From 4bf040e62ca2b4415e4efb5ca594a0f043bb6c82 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Wed, 23 Oct 2024 07:27:51 -0600 Subject: [PATCH] Formatting --- frigate/api/export.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/api/export.py b/frigate/api/export.py index 3275783ca..c3299a4b0 100644 --- a/frigate/api/export.py +++ b/frigate/api/export.py @@ -66,7 +66,10 @@ def export_recording( .where( Recordings.start_time.between(start_time, end_time) | Recordings.end_time.between(start_time, end_time) - | ((start_time > Recordings.start_time) & (end_time < Recordings.end_time)) + | ( + (start_time > Recordings.start_time) + & (end_time < Recordings.end_time) + ) ) .where(Recordings.camera == camera_name) .count()