(self, session_id: str)
| 163 | # ─── Read-side helpers ──────────────────────────────────────────── |
| 164 | |
| 165 | def get(self, session_id: str) -> SessionInfo | None: |
| 166 | return self._sessions.get(session_id) |
| 167 | |
| 168 | def active_session_ids(self) -> list[str]: |
| 169 | return [ |
no outgoing calls
no test coverage detected