You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
maybe via Meta class with parameters (django-style)
classArgs:
a: intb='foo'c='bar'classMeta:
groups= [
['a', 'b'], ['c'],
]
# ororder=1# or -1, or list of namesseparator= ['c'] # place separator above `c` arg
or as list in parse_args:
parse_args([Args, AnotherArgs, ...])
or pytest style: anonymous OptionGroup + list of groups
The text was updated successfully, but these errors were encountered:
vanyakosmos
changed the title
allow to add separator between args in help and print full help message (with sub commands)
add separator between args in help and print full help message (with sub commands)
Oct 29, 2019
vanyakosmos
changed the title
add separator between args in help and print full help message (with sub commands)
add separator between args in help message
Oct 31, 2019
maybe via Meta class with parameters (django-style)
or as list in
parse_args
:or pytest style: anonymous OptionGroup + list of groups
The text was updated successfully, but these errors were encountered: