Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pymongo/asynchronous/mongo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,6 +758,7 @@ def __init__(
self._host = host
self._port = port
self._topology: Topology = None # type: ignore[assignment]
self._timeout: float | None = None

# _pool_class, _monitor_class, and _condition_class are for deep
# customization of PyMongo, e.g. Motor.
Expand Down
1 change: 1 addition & 0 deletions pymongo/synchronous/mongo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,7 @@ def __init__(
self._host = host
self._port = port
self._topology: Topology = None # type: ignore[assignment]
self._timeout: float | None = None

# _pool_class, _monitor_class, and _condition_class are for deep
# customization of PyMongo, e.g. Motor.
Expand Down
Loading