From da09a8c0e3194eb49c4c3025ce6a16539c7f046b Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 8 Jul 2024 10:19:24 -0600 Subject: [PATCH] Formatting --- frigate/video.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/video.py b/frigate/video.py index a2b4a9d34..ef85ee62a 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -715,7 +715,9 @@ def process_frames( if d[0] not in ALL_ATTRIBUTE_LABELS ] # now that we have refined our detections, we need to track objects - object_tracker.match_and_update(frame_name, frame_time, tracked_detections) + object_tracker.match_and_update( + frame_name, frame_time, tracked_detections + ) # else, just update the frame times for the stationary objects else: object_tracker.update_frame_times(frame_name, frame_time)