Skip to content

Commit a9cf616

Browse files
committed
Fix helpers
1 parent f9930b1 commit a9cf616

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymongo/asynchronous/helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,6 @@ async def anext(cls: Any) -> Any:
7777
"""Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#anext."""
7878
return await cls.__anext__()
7979

80-
async def aiter(cls: Any) -> Any:
80+
def aiter(cls: Any) -> Any:
8181
"""Compatibility function until we drop 3.9 support: https://docs.python.org/3/library/functions.html#anext."""
82-
return await cls.__aiter__()
82+
return cls.__aiter__()

0 commit comments

Comments
 (0)