From 8691f6e3a5eade72e4d5dbe84355424adb089b88 Mon Sep 17 00:00:00 2001 From: codegen-bot Date: Thu, 27 Feb 2025 12:43:31 -0800 Subject: [PATCH] fix: fix start/main.py --- src/codegen/cli/commands/start/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codegen/cli/commands/start/main.py b/src/codegen/cli/commands/start/main.py index 34c5f8957..ce2d1d919 100644 --- a/src/codegen/cli/commands/start/main.py +++ b/src/codegen/cli/commands/start/main.py @@ -32,7 +32,7 @@ def start_command(port: int | None, detached: bool = False, skip_build: bool = F rich.print(f"[yellow]Removing existing runner {repo_config.name} to force restart[/yellow]") container.remove() else: - return _handle_existing_container(repo_config, container, force) + return _handle_existing_container(repo_config, container) if port is None: port = get_free_port()