Skip to content

Commit da27f69

Browse files
committed
async_pymongo: fix missing import
Signed-off-by: wulan17 <[email protected]>
1 parent f843c16 commit da27f69

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

async_pymongo/cursor_base.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333

3434
from pymongo.client_session import ClientSession
3535
from pymongo.collection import Collection
36-
from pymongo.cursor import _QUERY_OPTIONS, Cursor, RawBatchCursor
36+
from pymongo.cursor import Cursor, RawBatchCursor
37+
from pymongo.cursor_shared import _QUERY_OPTIONS
3738
from pymongo.typings import _Address, _DocumentType
3839

3940
from async_pymongo.async_helper import run_sync

0 commit comments

Comments
 (0)