From e69c5c1d42b5f6efba642d9918177a3ff3caf312 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Mon, 11 Nov 2024 06:45:27 -0700 Subject: [PATCH] Formatting --- frigate/output/output.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/output/output.py b/frigate/output/output.py index 3fbff8664..5d564b936 100644 --- a/frigate/output/output.py +++ b/frigate/output/output.py @@ -144,7 +144,9 @@ def output_frames( # check for any cameras that are currently offline # and need to generate a preview if generated_preview: - logger.debug("Checking for offline cameras because another camera generated a preview.") + logger.debug( + "Checking for offline cameras because another camera generated a preview." + ) for camera, time in preview_write_times.copy().items(): if time != 0 and frame_time - time > 10: preview_recorders[camera].flag_offline(frame_time)