| 11 | |
| 12 | |
| 13 | class PythonFileCorruptedError(ParseError): |
| 14 | def __init__(self, path, message="Python file structure is corrupted"): |
| 15 | super().__init__(path, message) |
| 16 | |
| 17 | |
| 18 | def load_py(path, fs=None, **kwargs): |
no outgoing calls
no test coverage detected