From 33aedbad6cf67698e0177d57e8d3fc6456b6886a Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 10 Dec 2022 16:10:58 -0700 Subject: [PATCH] Formatting --- frigate/http.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 06fa675c3..29e5449cc 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -1026,7 +1026,9 @@ def vod_ts(camera_name, start_ts, end_ts): @bp.route("/vod////") def vod_hour_no_timezone(year_month, day, hour, camera_name): - return vod_hour(year_month, day, hour, camera_name, get_localzone_name().replace("/", "_")) + return vod_hour( + year_month, day, hour, camera_name, get_localzone_name().replace("/", "_") + ) # TODO make this nicer when vod module is removed