From e7313c514f590e86c870dd1abfc98cf0a8c2c3ad Mon Sep 17 00:00:00 2001 From: Vega Date: Fri, 12 Aug 2022 23:13:57 +0800 Subject: [PATCH] Refactor (#705) * Refactor model * Add description for * update launch json * Fix #657 * 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.