From c7be6ba2fcb6d9c6bf5f11f4fc9f4eba8a9167b3 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 15 Dec 2024 15:40:55 -0700 Subject: [PATCH] Set type --- frigate/api/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/app.py b/frigate/api/app.py index 67c2bcfd4..57efdeb15 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -135,7 +135,7 @@ def config(request: Request): camera_dict["zones"][zone_name]["color"] = zone.color # remove go2rtc stream passwords - go2rtc = config_obj.go2rtc.model_dump( + go2rtc: dict[str, any] = config_obj.go2rtc.model_dump( mode="json", warnings="none", exclude_none=True ) for stream_name, stream in go2rtc.get("streams", {}).items():