From 3c3cf11da4b671364070550fb4ef0cc818686775 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 16 Mar 2026 06:36:25 -0500 Subject: [PATCH] formatting --- frigate/comms/dispatcher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frigate/comms/dispatcher.py b/frigate/comms/dispatcher.py index ad512e6ab..edc60e069 100644 --- a/frigate/comms/dispatcher.py +++ b/frigate/comms/dispatcher.py @@ -569,7 +569,9 @@ class Dispatcher: logger.error("Profile manager not initialized") return - profile_name = payload.strip() if payload.strip() not in ("", "none", "None") else None + profile_name = ( + payload.strip() if payload.strip() not in ("", "none", "None") else None + ) err = self.profile_manager.activate_profile(profile_name) if err: logger.error("Failed to activate profile: %s", err)