(self, path: str)
| 553 | self._session_id = session_id |
| 554 | |
| 555 | def _path(self, path: str) -> Path: |
| 556 | return provider_path(self._provider_root, self._session_id, path) |
| 557 | |
| 558 | async def read_file(self, path: str) -> str: |
| 559 | return self._path(path).read_text(encoding="utf-8") |
no test coverage detected