Skip to content

Commit

Permalink
cli: Show help message with no args
Browse files Browse the repository at this point in the history
with this commit, if no arguments are given, the help message is presented
  • Loading branch information
mirkobrombin committed Jun 19, 2023
1 parent 3ae5397 commit 9132667
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bottles/frontend/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ def __process_args(self):
elif self.args.command == "standalone":
self.generate_standalone()

else:
self.parser.print_help()

# region INFO
def show_info(self):
_type = self.args.type
Expand Down

0 comments on commit 9132667

Please sign in to comment.