From 1ab12b14c2d9483ac8e829a05b4eea0f87f5513a Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Tue, 12 Nov 2024 16:49:27 -0500 Subject: [PATCH] Fix status table output --- ipowerswitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipowerswitch.py b/ipowerswitch.py index 0fc8ca9..d4f374a 100644 --- a/ipowerswitch.py +++ b/ipowerswitch.py @@ -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()