Get session by ID
(self, session_id: str)
| 48 | return session |
| 49 | |
| 50 | def get_session(self, session_id: str) -> Optional[Dict[str, Any]]: |
| 51 | """Get session by ID""" |
| 52 | return self._sessions.get(session_id) |
| 53 | |
| 54 | def update_session(self, session_id: str, updates: Dict[str, Any]) -> bool: |
| 55 | """Update session data""" |
no test coverage detected