We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff3f9d commit 9cc9405Copy full SHA for 9cc9405
splitio/optional/loaders.py
@@ -17,7 +17,7 @@ def missing_asyncio_dependencies(*_, **__):
17
async def _anext(it):
18
return await it.__anext__()
19
20
-if sys.version_info.major > 2:
+if sys.version_info.major == 3 and sys.version_info.minor < 10:
21
anext = _anext
22
else:
23
- anext = "Asyncio is not supported"
+ anext = anext
0 commit comments