(self, session_id: str)
| 330 | return bool(self._active_run_sessions) |
| 331 | |
| 332 | async def mark_run_active(self, session_id: str) -> None: |
| 333 | async with self._get_lock(): |
| 334 | self._active_run_sessions.add(session_id) |
| 335 | |
| 336 | async def mark_run_inactive(self, session_id: str) -> None: |
| 337 | async with self._get_lock(): |
no test coverage detected