(awaitable)
| 718 | if not coroutines.iscoroutine(coro_or_future): |
| 719 | if inspect.isawaitable(coro_or_future): |
| 720 | async def _wrap_awaitable(awaitable): |
| 721 | return await awaitable |
| 722 | |
| 723 | coro_or_future = _wrap_awaitable(coro_or_future) |
| 724 | should_close = False |
no outgoing calls
no test coverage detected
searching dependent graphs…