This commit is contained in:
Nuno Campos
2025-03-31 17:36:00 -07:00
parent c49a077789
commit 5e9e7b79fe
+1 -1
View File
@@ -164,7 +164,7 @@ def _ensure_future(
elif EAGER_NOT_SUPPORTED or lazy:
return loop.create_task(coro_or_future, name=name, context=context)
else:
return asyncio.eager_task_factory( # type:ignore
return asyncio.eager_task_factory(
loop, coro_or_future, name=name, context=context
)
except RuntimeError: