Add help cli
This commit is contained in:
parent
ccd2f2725c
commit
a03552bdf3
1 changed files with 1 additions and 0 deletions
|
@ -5,4 +5,5 @@ def parse_args():
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument("-v", "--verbose", help="Display verbose output", action="store_true")
|
parser.add_argument("-v", "--verbose", help="Display verbose output", action="store_true")
|
||||||
parser.add_argument("--update-csl", help="Update CSL files", action="store_true")
|
parser.add_argument("--update-csl", help="Update CSL files", action="store_true")
|
||||||
|
parser.add_help = True
|
||||||
return parser.parse_args()
|
return parser.parse_args()
|
||||||
|
|
Reference in a new issue