(self, *args, **kwargs)
| 187 | class ErrorRaisingArgumentParser(argparse.ArgumentParser): |
| 188 | |
| 189 | def parse_args(self, *args, **kwargs): |
| 190 | parse_args = super(ErrorRaisingArgumentParser, self).parse_args |
| 191 | return stderr_to_parser_error(parse_args, *args, **kwargs) |
| 192 | |
| 193 | def exit(self, *args, **kwargs): |
| 194 | exit = super(ErrorRaisingArgumentParser, self).exit |
no test coverage detected