A docstring.
(self, args)
| 35 | @argument_group('Second Group') |
| 36 | @argument('-z', '--baz', help="another grouped argument") |
| 37 | def magic_foo3(self, args): |
| 38 | """ A docstring. |
| 39 | """ |
| 40 | return parse_argstring(magic_foo3, args) |
| 41 | |
| 42 | |
| 43 | @magic_arguments() |
no test coverage detected