@@ -33,7 +33,7 @@ def run():
3333def _version (
3434 version : t .Optional [bool ] = typer .Option (
3535 None , "--version" , help = "hyperglass version" , callback = _version
36- )
36+ ),
3737) -> None :
3838 """hyperglass"""
3939 pass
@@ -77,7 +77,6 @@ def _build_ui(timeout: int = typer.Option(180, help="Timeout in seconds")) -> No
7777 with echo ._console .status (
7878 f"Starting new UI build with a { timeout } second timeout..." , spinner = "aesthetic"
7979 ):
80-
8180 _build_ui (timeout = 120 )
8281
8382
@@ -140,7 +139,7 @@ def _clear_cache():
140139
141140@cli .command (name = "devices" )
142141def _devices (
143- search : t .Optional [str ] = typer .Argument (None , help = "Device ID or Name Search Pattern" )
142+ search : t .Optional [str ] = typer .Argument (None , help = "Device ID or Name Search Pattern" ),
144143):
145144 """Show all configured devices"""
146145 # Third Party
@@ -189,7 +188,7 @@ def _devices(
189188
190189@cli .command (name = "directives" )
191190def _directives (
192- search : t .Optional [str ] = typer .Argument (None , help = "Directive ID or Name Search Pattern" )
191+ search : t .Optional [str ] = typer .Argument (None , help = "Directive ID or Name Search Pattern" ),
193192):
194193 """Show all configured devices"""
195194 # Third Party
@@ -280,7 +279,7 @@ def _plugins(
280279def _params (
281280 path : t .Optional [str ] = typer .Argument (
282281 None , help = "Parameter Object Path, for example 'messages.no_input'"
283- )
282+ ),
284283):
285284 """Show configuration parameters"""
286285 # Standard Library
@@ -312,7 +311,7 @@ def _params(
312311 )
313312 raise typer .Exit (0 )
314313 except AttributeError :
315- echo .error (f"{ 'params.' + path !r} does not exist" )
314+ echo .error (f"{ 'params.' + path !r} does not exist" )
316315 raise typer .Exit (1 )
317316
318317 panel = Inspect (
0 commit comments