()
| 36 | last_id = None |
| 37 | |
| 38 | async def poll() -> bool: |
| 39 | nonlocal last_id |
| 40 | last_id = await client.get_last_session_id() |
| 41 | return bool(last_id) |
| 42 | |
| 43 | deadline = asyncio.get_running_loop().time() + 10.0 |
| 44 | while True: |
no test coverage detected
searching dependent graphs…