From bcc47c751e2df346a423e7257f31a39284f7ab9a Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 16 Sep 2023 21:57:36 -0600 Subject: [PATCH] Formatting --- frigate/record/export.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/record/export.py b/frigate/record/export.py index 224cbb8ce..fee3a58a8 100644 --- a/frigate/record/export.py +++ b/frigate/record/export.py @@ -66,7 +66,10 @@ class RecordingExporter(threading.Thread): .where( Recordings.start_time.between(self.start_time, self.end_time) | Recordings.end_time.between(self.start_time, self.end_time) - | ((self.start_time > Recordings.start_time) & (self.end_time < Recordings.end_time)) + | ( + (self.start_time > Recordings.start_time) + & (self.end_time < Recordings.end_time) + ) ) .where(Recordings.camera == self.camera) .order_by(Recordings.start_time.asc())