Fixed missing comma.
Some checks failed
Build Base Application / Build (push) Failing after 1m35s

This commit is contained in:
retoor 2024-12-14 21:04:28 +01:00
parent 6a4384cbc7
commit 8d892bdf87

View File

@ -248,7 +248,7 @@ argument_parser = argparse.ArgumentParser("Web service")
argument_parser.add_argument(
"--host",
default="0.0.0.0",
required=False
required=False,
type=str,
help="Host to serve on."
)