Skip to content

Commit

Permalink
Avoids case where app name can be empty (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
markwaddle authored Nov 20, 2024
1 parent fe14d8e commit 0396f5a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def main():
parse_args.add_argument(
"--app",
type=str,
help="assistant app to start; ex: workbench_assistant.canonical:app",
default=os.getenv("ASSISTANT_APP", "assistant:app"),
help="assistant app to start in format <module>:<attribute> (also supports ASSISTANT_APP env var)",
default=os.getenv("ASSISTANT_APP") or "assistant:app",
)
parse_args.add_argument(
"--port",
Expand Down

0 comments on commit 0396f5a

Please sign in to comment.