From 823a57b33132bbc93b8022772c6cdf5a6d681601 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 5 Oct 2023 06:03:46 -0600 Subject: [PATCH] Formatting --- frigate/http.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index b60fbe1b3..013a230a5 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1280,7 +1280,10 @@ def get_snapshot_from_recording(camera_name: str, frame_time: str): Recordings.start_time, ) .where( - ((frame_time >= Recordings.start_time) & (frame_time <= Recordings.end_time)) + ( + (frame_time >= Recordings.start_time) + & (frame_time <= Recordings.end_time) + ) ) .where(Recordings.camera == camera_name) )