From 97049212c62f2615c04a9e4923dbd8843dec2aa9 Mon Sep 17 00:00:00 2001 From: Mitch Ross Date: Sat, 14 Dec 2024 13:50:13 -0500 Subject: [PATCH] lint --- frigate/api/app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frigate/api/app.py b/frigate/api/app.py index a8e4ac9d4..ec6a93de9 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -148,9 +148,9 @@ def config(request: Request): config["model"]["colormap"] = config_obj.model.colormap for detector_config in config["detectors"].values(): - detector_config["model"][ - "labelmap" - ] = request.app.frigate_config.model.merged_labelmap + detector_config["model"]["labelmap"] = ( + request.app.frigate_config.model.merged_labelmap + ) return JSONResponse(content=config)