🔀 Merge branch 'argparser'

This commit is contained in:
Freezed 2022-10-26 00:30:58 +02:00
commit f28c206094
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="?",