Skip to content

Commit

Permalink
Disabled pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
mgupta27 committed Jul 6, 2024
1 parent 0f5ee7c commit d0e4dba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/geolocation/geolocation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import numpy as np

from . import camera_properties
from .. import detection_in_world
from .. import detections_and_time
from .. import detection_in_world
from .. import merged_odometry_detections
from ..logger import logger

Expand Down Expand Up @@ -320,6 +320,8 @@ def run(
return False, None
detections_in_world.append(detection_world)

# Disable pylint to redefine 'detection_in_world'
# pylint: disable-next=[W0621]
for detection_in_world in detections_in_world:
frame = inspect.currentframe()
self.__logger.info(detection_in_world, frame)
Expand Down

0 comments on commit d0e4dba

Please sign in to comment.