(self, message: str)
| 28 | |
| 29 | class CurlParser(argparse.ArgumentParser): |
| 30 | def error(self, message: str) -> NoReturn: |
| 31 | error_msg = f"There was an error parsing the curl command: {message}" |
| 32 | raise ValueError(error_msg) |
| 33 | |
| 34 | |
| 35 | curl_parser = CurlParser() |
no outgoing calls