From f9ee4d78903c830fd04dc83b099c4d69743ff0dd Mon Sep 17 00:00:00 2001 From: babysor00 Date: Fri, 12 Aug 2022 23:13:35 +0800 Subject: [PATCH] Avoid recursive calls of web ui for M1 --- web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.py b/web.py index d232530..e478a67 100644 --- a/web.py +++ b/web.py @@ -5,7 +5,7 @@ import typer cli = typer.Typer() @cli.command() -def launch_ui(port: int = typer.Option(8080, "--port", "-p")) -> None: +def launch(port: int = typer.Option(8080, "--port", "-p")) -> None: """Start a graphical UI server for the opyrator. The UI is auto-generated from the input- and output-schema of the given function.