(self, session_id: str)
| 529 | return sess |
| 530 | |
| 531 | def get(self, session_id: str) -> Optional[SessionRuntime]: |
| 532 | with self._lock: |
| 533 | sess = self._sessions.get(session_id) |
| 534 | if sess is not None: |
| 535 | sess.touch() |
| 536 | return sess |
| 537 | |
| 538 | def delete(self, session_id: str) -> None: |
| 539 | with self._lock: |
no test coverage detected