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 4a7f71b commit 0a72e96Copy full SHA for 0a72e96
src/warnet/project.py
@@ -159,7 +159,8 @@ def is_docker_desktop_kube_running() -> tuple[bool, str]:
159
text=True,
160
)
161
if cluster_info.returncode == 0:
162
- return True, f"\n\t{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, ""
166
except Exception:
0 commit comments