(self, params: Any)
| 256 | return _to_session_fs_error(exc) |
| 257 | |
| 258 | async def rename(self, params: Any) -> SessionFSError | None: |
| 259 | try: |
| 260 | await self._p.rename(params.src, params.dest) |
| 261 | return None |
| 262 | except Exception as exc: |
| 263 | return _to_session_fs_error(exc) |
| 264 | |
| 265 | async def sqlite_query(self, params: Any) -> _GeneratedSqliteQueryResult: |
| 266 | # SQLite methods intentionally skip toSessionFsError wrapping — FS errno |
nothing calls this directly
no test coverage detected