We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f07d35 commit 4055480Copy full SHA for 4055480
src/warnet/project.py
@@ -159,7 +159,7 @@ def is_docker_desktop_kube_running() -> tuple[bool, str]:
159
text=True,
160
)
161
if cluster_info.returncode == 0:
162
- indented_output = cluster_info.stdout.strip().replace('\n', '\n\t')
+ indented_output = cluster_info.stdout.strip().replace("\n", "\n\t")
163
return True, f"\n\t{indented_output}"
164
else:
165
return False, ""
0 commit comments