(file_path, parent_path)
| 144 | |
| 145 | |
| 146 | def _is_subpath(file_path, parent_path): |
| 147 | try: |
| 148 | file_path.relative_to(parent_path) |
| 149 | return True |
| 150 | except (ValueError, OSError): |
| 151 | return False |
| 152 | |
| 153 | |
| 154 | def _path_to_module(path): |
no test coverage detected
searching dependent graphs…