Skip to content

Commit 6b959b3

Browse files
authored
fix: remove extra param from _handle_existing_container (#688)
1 parent 7fdbdf8 commit 6b959b3

File tree

1 file changed

+1
-1
lines changed
  • src/codegen/cli/commands/start

1 file changed

+1
-1
lines changed

src/codegen/cli/commands/start/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def start_command(port: int | None, detached: bool = False, skip_build: bool = F
3232
rich.print(f"[yellow]Removing existing runner {repo_config.name} to force restart[/yellow]")
3333
container.remove()
3434
else:
35-
return _handle_existing_container(repo_config, container, force)
35+
return _handle_existing_container(repo_config, container)
3636

3737
if port is None:
3838
port = get_free_port()

0 commit comments

Comments
 (0)