(self, path: str)
| 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") |
| 560 | |
| 561 | async def write_file(self, path: str, content: str, mode: int | None = None) -> None: |
| 562 | p = self._path(path) |
no test coverage detected