Print help if no arguments given
This commit is contained in:
parent
8d4f5093cf
commit
7d70ba7fb8
|
@ -74,7 +74,7 @@ class Command(str, Enum):
|
|||
|
||||
|
||||
def main():
|
||||
command = sys.argv.pop(1)
|
||||
command = sys.argv.pop(1) if len(sys.argv) > 0 else Command.HELP
|
||||
if command == Command.API:
|
||||
run_api()
|
||||
elif command == Command.CHAT:
|
||||
|
|
Loading…
Reference in New Issue