🔀 Merge branch 'argparser'

This commit is contained in:
Freezed 2022-10-26 00:30:58 +02:00
commit f28c206094

View File

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