(self)
| 9 | |
| 10 | class ExecutableNotFoundError(OSError): |
| 11 | def to_output(self) -> tuple[int, bytes, None]: |
| 12 | return (1, self.args[0].encode(), None) |
| 13 | |
| 14 | |
| 15 | def parse_filename(filename: str) -> tuple[str, ...]: |
no outgoing calls
no test coverage detected