A docstring.
(self, args)
| 45 | @argument_group('Second Group') |
| 46 | @argument('-z', '--baz', help="another grouped argument") |
| 47 | def magic_foo3(self, args): |
| 48 | """ A docstring. |
| 49 | """ |
| 50 | return parse_argstring(magic_foo3, args) |
| 51 | |
| 52 | |
| 53 | @magic_arguments() |
no test coverage detected
searching dependent graphs…