Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix
  • Loading branch information
NoahStapp committed Apr 14, 2025
commit 3dbbeab7f3550891eb77ff5824e952e34ab049db
4 changes: 3 additions & 1 deletion pymongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"WriteConcern",
"has_c",
"timeout",
"uri_parser",
]

ASCENDING = 1
Expand Down Expand Up @@ -106,6 +105,9 @@
from pymongo.synchronous.mongo_client import MongoClient
from pymongo.write_concern import WriteConcern

# Public module compatibility imports
import pymongo.uri_parser # noqa: F401 # isort: skip

version = __version__
"""Current version of PyMongo."""

Expand Down
2 changes: 1 addition & 1 deletion test/test_default_exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"ConfigurationError",
"WriteConcern",
]
PYMONGO_IGNORE = ["uri_parser"]
PYMONGO_IGNORE = []
GLOBAL_INGORE = ["TYPE_CHECKING", "annotations"]


Expand Down
Loading