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 5633819 commit 5e39dffCopy full SHA for 5e39dff
pymongo/__init__.py
@@ -107,12 +107,12 @@
107
108
# Public module compatibility imports
109
# isort: off
110
-import pymongo.uri_parser # noqa: F401
111
-import pymongo.change_stream # noqa: F401
112
-import pymongo.client_session # noqa: F401
113
-import pymongo.collection # noqa: F401
114
-import pymongo.command_cursor # noqa: F401
115
-import pymongo.database # noqa: F401
+from pymongo import uri_parser # noqa: F401
+from pymongo import change_stream # noqa: F401
+from pymongo import client_session # noqa: F401
+from pymongo import collection # noqa: F401
+from pymongo import command_cursor # noqa: F401
+from pymongo import database # noqa: F401
116
# isort: on
117
118
version = __version__
0 commit comments