Adjust argparse options

This commit is contained in:
Freezed 2022-10-26 00:27:35 +02:00
parent d21519630b
commit 04a7aa36f6
1 changed files with 1 additions and 1 deletions

View File

@ -47,13 +47,13 @@ def parse_args(args=sys.argv[1:]): # pylint: disable=W0102
"-f",
"--foo",
action="store_true",
default=False,
dest="foo",
help="Using foo",
)
group.add_argument(
"-b",
"--bar",
const="BAR",
help="Using bar",
metavar="BAR",
nargs="?",