(self, path: str='')
| 71 | BASE_PATH = Path(__file__).parent / "files" |
| 72 | |
| 73 | def path(self, path: str='') -> str: |
| 74 | return os.fspath(self.BASE_PATH / path) |
| 75 | |
| 76 | def read(self, path): |
| 77 | with open(self.path(path), 'r') as fp: |
no outgoing calls
no test coverage detected