(self)
| 481 | |
| 482 | class SessionManager: |
| 483 | def __init__(self): |
| 484 | self._sessions: dict[str, SessionRuntime] = {} |
| 485 | self._lock = threading.RLock() |
| 486 | |
| 487 | def _make_backend(self) -> BackendPaths: |
| 488 | return BackendPaths( |
nothing calls this directly
no outgoing calls
no test coverage detected