Skip to content

Commit

Permalink
pushing lint to main bc its friday
Browse files Browse the repository at this point in the history
  • Loading branch information
pinheadmz committed Oct 11, 2024
1 parent 4f07d35 commit 4055480
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/warnet/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def is_docker_desktop_kube_running() -> tuple[bool, str]:
text=True,
)
if cluster_info.returncode == 0:
indented_output = cluster_info.stdout.strip().replace('\n', '\n\t')
indented_output = cluster_info.stdout.strip().replace("\n", "\n\t")
return True, f"\n\t{indented_output}"
else:
return False, ""
Expand Down

0 comments on commit 4055480

Please sign in to comment.