Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Jul 8, 2024
1 parent 946a10f commit bdf217d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frigate/object_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,10 +663,11 @@ def update(self, frame_name, frame_time, current_detections, motion_boxes, regio
frame_name, self.camera_config.frame_shape_yuv
)
except FileNotFoundError:
logger.warning(f"Frame for {self.camera_config.name} missing in SHM, this is expected when shutting down.")
logger.warning(
f"Frame for {self.camera_config.name} missing in SHM, this is expected when shutting down."
)
return


tracked_objects = self.tracked_objects.copy()
current_ids = set(current_detections.keys())
previous_ids = set(tracked_objects.keys())
Expand Down

0 comments on commit bdf217d

Please sign in to comment.