From 1623bd03bc88046369b5f228213c27f36cadef29 Mon Sep 17 00:00:00 2001 From: Cody Cutrer Date: Thu, 22 Jun 2023 16:00:25 -0600 Subject: [PATCH] fix black errors --- frigate/video.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frigate/video.py b/frigate/video.py index 133a5681c..49ab2a48e 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -379,7 +379,14 @@ class CameraWatchdog(threading.Thread): class CameraCapture(threading.Thread): def __init__( - self, camera_name, ffmpeg_process, frame_shape, frame_queue, fps, skipped_fps, stop_event + self, + camera_name, + ffmpeg_process, + frame_shape, + frame_queue, + fps, + skipped_fps, + stop_event, ): threading.Thread.__init__(self) self.name = f"capture:{camera_name}"