(self, path: str)
| 18 | self.files = {os.path.abspath(f) for f in files} |
| 19 | |
| 20 | def isfile(self, path: str) -> bool: |
| 21 | return path in self.files |
| 22 | |
| 23 | def isdir(self, path: str) -> bool: |
| 24 | if not path.endswith(os.sep): |
no outgoing calls
no test coverage detected