From 362d7836dcc8fd76a45320254b9dac8af3748d84 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 6a89d43fb..70053b8f2 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -147,9 +147,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)