Handler for asyncio autoawait
(self, coro)
| 20 | class _AsyncIORunner: |
| 21 | |
| 22 | def __call__(self, coro): |
| 23 | """ |
| 24 | Handler for asyncio autoawait |
| 25 | """ |
| 26 | import asyncio |
| 27 | |
| 28 | return asyncio.get_event_loop().run_until_complete(coro) |
| 29 | |
| 30 | def __str__(self): |
| 31 | return 'asyncio' |
nothing calls this directly
no outgoing calls
no test coverage detected