Add this object's information to the parser.
(self, parser, group)
| 226 | self.kwds = kwds |
| 227 | |
| 228 | def add_to_parser(self, parser, group): |
| 229 | """ Add this object's information to the parser. |
| 230 | """ |
| 231 | if group is not None: |
| 232 | parser = group |
| 233 | getattr(parser, self._method_name)(*self.args, **self.kwds) |
| 234 | return None |
| 235 | |
| 236 | |
| 237 | class argument(ArgMethodWrapper): |
nothing calls this directly
no outgoing calls
no test coverage detected