Avoid recursive calls of web ui for M1

refactor
babysor00 2022-08-12 23:13:35 +08:00
parent 8d0d22bc00
commit f9ee4d7890
1 changed files with 1 additions and 1 deletions

2
web.py
View File

@ -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.