From 1a74fad81990e5327820c1a7f718a0346e1a5561 Mon Sep 17 00:00:00 2001 From: Felipe Santos Date: Tue, 17 Jan 2023 14:00:30 -0300 Subject: [PATCH] Fix format --- frigate/http.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index 16a121af6..581635d5e 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -769,7 +769,10 @@ def config_save(): logging.error(f"Error restarting Frigate: {e}") return "Config successfully saved, unable to restart Frigate", 200 - return "Config successfully saved, restarting (this can take up to one minute)...", 200 + return ( + "Config successfully saved, restarting (this can take up to one minute)...", + 200, + ) else: return "Config successfully saved.", 200