(self, *args, **kwargs)
| 207 | class ErrorRaisingArgumentParser(argparse.ArgumentParser): |
| 208 | |
| 209 | def parse_args(self, *args, **kwargs): |
| 210 | parse_args = super(ErrorRaisingArgumentParser, self).parse_args |
| 211 | return stderr_to_parser_error(parse_args, *args, **kwargs) |
| 212 | |
| 213 | def exit(self, *args, **kwargs): |
| 214 | exit = super(ErrorRaisingArgumentParser, self).exit |
no test coverage detected