argparse icon indicating copy to clipboard operation
argparse copied to clipboard

allow boolean switch with '--enable-foo=true/false'

Open rtgiskard opened this issue 1 year ago • 0 comments

This is a try to implement the #313, however this make flag() apply nargs(0,1), and break assumption for some of the test.

For example: program.parse_args({"./test", "--enable-foo", "dump"}), with --enable-foo set with flag(), the positional argument dump will be consumed by the flag and cause trouble.

And I'm not sure, this seems to be in consistent with the original design, there may be better solutions.

rtgiskard avatar Dec 18 '23 13:12 rtgiskard