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
I actively am using subparsers with jsonargparse.ActionParser. The problem is -- arguments for subparser's nodes don't appear in main parser help message.
I know it's outlined in README, but It's very confusing to see half of arguments available withscript.py --help.
The text was updated successfully, but these errors were encountered:
I agree it would be much nicer if the ActionParser arguments are shown in the main parser help. Though I am not sure how difficult it would be to implement this. Will take a look at it later.
mauvilsa
changed the title
Option to show full help message with subparsers's arguments.
Option to show full help message with ActionParser arguments.
Mar 16, 2021
- The help of ActionParser arguments is now shown in the main help #41.
- Fixed nested options with names including dashes not working #42.
- Fixed DefaultHelpFormatter not properly using env_prefix to show var names.
- _ActionConfigLoad is now recursive to replace old ActionParser behavior.
- Fixed issue in _load_config when given non-config/-dict value.
I actively am using subparsers with
jsonargparse.ActionParser
. The problem is -- arguments for subparser's nodes don't appear in main parser help message.I know it's outlined in README, but It's very confusing to see half of arguments available with
script.py --help
.The text was updated successfully, but these errors were encountered: