From 9620be6df998075aeec4ad0c700019f686f4817d Mon Sep 17 00:00:00 2001 From: Pragyanstha Date: Sun, 29 Jun 2025 20:37:22 +0900 Subject: [PATCH] formatting --- trackstudio/cli.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/trackstudio/cli.py b/trackstudio/cli.py index 3795f56..b62b2c0 100644 --- a/trackstudio/cli.py +++ b/trackstudio/cli.py @@ -62,7 +62,9 @@ def run(streams, config, tracker, merger, port, host, share, no_browser, vision_ # Use streams from command line or config if config_data.get("rtsp_streams") is None: - list(streams) if streams else ["rtsp://localhost:8554/camera0", "rtsp://localhost:8554/camera1"] + config_data["rtsp_streams"] = ( + [*streams] if streams else ["rtsp://localhost:8554/camera0", "rtsp://localhost:8554/camera1"] + ) # Import here to avoid circular imports from . import launch # noqa: PLC0415