Return the session id, creating one if needed.
(self)
| 40 | return self.session_id |
| 41 | |
| 42 | async def get_session_id(self) -> str: |
| 43 | """Return the session id, creating one if needed.""" |
| 44 | return await self._ensure_session_id() |
| 45 | |
| 46 | async def get_items(self, limit: int | None = None) -> list[Any]: |
| 47 | session_id = await self._ensure_session_id() |
no test coverage detected