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 f9930b1 commit a9cf616Copy full SHA for a9cf616
pymongo/asynchronous/helpers.py
@@ -77,6 +77,6 @@ async def anext(cls: Any) -> Any:
77
"""Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#anext."""
78
return await cls.__anext__()
79
80
- async def aiter(cls: Any) -> Any:
+ def aiter(cls: Any) -> Any:
81
82
- return await cls.__aiter__()
+ return cls.__aiter__()
0 commit comments