fix(__main__): require command argument
This commit is contained in:
parent
678935bd0e
commit
50af1a4587
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ def parser():
|
|||
|
||||
p = argparse.ArgumentParser(description='Process some integers.')
|
||||
|
||||
sp = p.add_subparsers(dest='command')
|
||||
sp = p.add_subparsers(dest='command', required=True)
|
||||
|
||||
p_standalone = sp.add_parser('standalone', help=command_standalone.__doc__)
|
||||
p_standalone.add_argument('--config-path', '-c', required=True)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue