()
| 198 | unsubscribe = session.on(on_event) |
| 199 | |
| 200 | async def wait(): |
| 201 | try: |
| 202 | return await asyncio.wait_for(future, timeout=timeout) |
| 203 | finally: |
| 204 | unsubscribe() |
| 205 | |
| 206 | return loop.create_task(wait()) |
| 207 |
no test coverage detected
searching dependent graphs…