From 1236f70584d58223b573ff7733ae5f08c3562dcf Mon Sep 17 00:00:00 2001 From: Geovane Fedrecheski Date: Mon, 26 Jan 2026 18:10:28 +0100 Subject: [PATCH] fix: correctly set watch flag --- swarmit/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarmit/cli/main.py b/swarmit/cli/main.py index 928fc22..8e304df 100755 --- a/swarmit/cli/main.py +++ b/swarmit/cli/main.py @@ -332,7 +332,7 @@ def status(ctx, watch): """Print current status of the robots.""" print("Fetching status...") controller = Controller(ctx.obj["settings"]) - controller.status(watch) + controller.status(watch=watch) controller.terminate()