Add all arguments directly to the parser
(parser, argument_signatures)
| 249 | # functions for adding optional arguments |
| 250 | # --------------------------------------- |
| 251 | def no_groups(parser, argument_signatures): |
| 252 | """Add all arguments directly to the parser""" |
| 253 | for sig in argument_signatures: |
| 254 | parser.add_argument(*sig.args, **sig.kwargs) |
| 255 | |
| 256 | def one_group(parser, argument_signatures): |
| 257 | """Add all arguments under a single group in the parser""" |
nothing calls this directly
no test coverage detected