fix black errors

This commit is contained in:
Cody Cutrer 2023-06-22 16:00:25 -06:00
parent c8c234b6e5
commit 1623bd03bc

View File

@ -379,7 +379,14 @@ class CameraWatchdog(threading.Thread):
class CameraCapture(threading.Thread): class CameraCapture(threading.Thread):
def __init__( 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) threading.Thread.__init__(self)
self.name = f"capture:{camera_name}" self.name = f"capture:{camera_name}"