From 8e26c219956816f2c8e6533547d45aeb4cc74041 Mon Sep 17 00:00:00 2001 From: Isaac Johnson Date: Sun, 6 Sep 2026 08:26:33 -0500 Subject: [PATCH] fix(botagent): correct unterminated string literal in lobby waiting loop --- botagent/bot_agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/botagent/bot_agent.py b/botagent/bot_agent.py index a7561a3..33286b8 100644 --- a/botagent/bot_agent.py +++ b/botagent/bot_agent.py @@ -231,7 +231,7 @@ class SmartBotAgent: while True: turn_info = requests.get(f"{BASE_URL}/turn").json() if not turn_info.get("game_started", False): - print("⏳ [LOBBY] Waiting for game to start via 'Start Game' in UI...", end=" ") + print("⏳ [LOBBY] Waiting for game to start via 'Start Game' in UI...", end="\r") time.sleep(0.5) continue