diff --git a/src/runboat/k8s.py b/src/runboat/k8s.py index 3b4135e..24f4e77 100644 --- a/src/runboat/k8s.py +++ b/src/runboat/k8s.py @@ -161,7 +161,14 @@ async def deploy(deployment_vars: DeploymentVars) -> None: str(tmp_path), ] ) - await _kubectl(["apply", "-k", str(tmp_path), "--wait=false"]) + await _kubectl( + [ + "apply", + "-k", + str(tmp_path), + "--wait=false", + ] + ) async def delete_resources(build_name: str) -> None: