Fix status table output

This commit is contained in:
Correl Roush 2024-11-12 16:49:27 -05:00
parent 1e8e186394
commit 1ab12b14c2

View file

@ -148,7 +148,7 @@ def status(context: typer.Context, switch_id: SwitchIdArgument) -> None:
table = rich.table.Table("Outlet", "Status")
for key in sorted(statuses.keys()):
table.add_row(str(key), statuses[key].value.upper())
console.print(table)
console.print(table)
@app.command()