(self, path: str)
| 742 | return self.fs.repo_url |
| 743 | |
| 744 | def from_os_path(self, path: str) -> str: |
| 745 | if os.path.isabs(path) or ( |
| 746 | os.name == "nt" and posixpath.isabs(path) and ntpath.sep not in path |
| 747 | ): |
| 748 | path = os.path.relpath(path, self.repo.root_dir) |
| 749 | return as_posix(path) |
| 750 | |
| 751 | def close(self): |
| 752 | if "fs" in self.__dict__: |
no test coverage detected