(self, *args: Any, python_version: str, **kwargs: Any)
| 161 | |
| 162 | class _RunError(subprocess.CalledProcessError): |
| 163 | def __init__(self, *args: Any, python_version: str, **kwargs: Any): |
| 164 | super().__init__(*args, **kwargs) |
| 165 | self.python_version = python_version |
| 166 | |
| 167 | |
| 168 | @_command("run") |
nothing calls this directly
no outgoing calls
no test coverage detected