(self, session_id: str)
| 87 | return self._dir / f"{session_id}.json" |
| 88 | |
| 89 | def _state_path(self, session_id: str) -> Path: |
| 90 | return self._dir / f"{session_id}-state.json" |
| 91 | |
| 92 | async def _read_items(self, session_id: str) -> list[Any]: |
| 93 | file_path = self._items_path(session_id) |
no outgoing calls
no test coverage detected