(self, task: asyncio.Task | None)
| 304 | return task |
| 305 | |
| 306 | def _untrack_task(self, task: asyncio.Task | None) -> None: |
| 307 | if task is not None: |
| 308 | self._client_tasks.discard(task) |
| 309 | |
| 310 | def _is_blocked(self, host: str) -> bool: |
| 311 | return ( |
no outgoing calls
no test coverage detected