(self)
| 643 | self.__saved = list(sys.path), list(sys.meta_path) |
| 644 | |
| 645 | def restore(self) -> None: |
| 646 | sys.path[:], sys.meta_path[:] = self.__saved |
| 647 | |
| 648 | |
| 649 | _FileContent = tuple[str | bytes, ...] | list[str | bytes] | str | bytes |
no outgoing calls
no test coverage detected