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()