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 92ddbbf commit 2ae9484Copy full SHA for 2ae9484
src/warnet/status.py
@@ -60,9 +60,7 @@ def status():
60
for ln in lns:
61
table.add_row("Lightning", ln["name"], ln["status"], ln["namespace"])
62
63
- # Add a separator if there are both tanks and scenarios
64
- if tanks and scenarios:
65
- table.add_row("", "", "")
+ table.add_row("", "", "")
66
67
# Add scenarios to the table
68
active = 0
@@ -72,7 +70,7 @@ def status():
72
70
if scenario["status"] == "running" or scenario["status"] == "pending":
73
71
active += 1
74
else:
75
- table.add_row("Scenario", "No active scenarios", "")
+ table.add_row("", "No active scenarios", "", style="red")
76
77
# Create a panel to wrap the table
78
panel = Panel(
0 commit comments