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
3 changes: 2 additions & 1 deletion pymongo/asynchronous/bulk.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from bson.raw_bson import RawBSONDocument
from pymongo import _csot, common
from pymongo._telemetry import _generate_op_id_or_none
from pymongo.asynchronous.client_session import AsyncClientSession, _validate_session_write_concern
from pymongo.asynchronous.client_session import AsyncClientSession
from pymongo.asynchronous.command_runner import (
run_bulk_write_command,
)
Expand All @@ -45,6 +45,7 @@
_raise_bulk_write_error,
_Run,
)
from pymongo.client_session_shared import _validate_session_write_concern
from pymongo.common import (
validate_is_document_type,
validate_ok_for_replace,
Expand Down
6 changes: 2 additions & 4 deletions pymongo/asynchronous/client_bulk.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@
from bson.raw_bson import RawBSONDocument
from pymongo import _csot, common
from pymongo._telemetry import _generate_op_id_or_none
from pymongo.asynchronous.client_session import (
AsyncClientSession,
_validate_session_write_concern,
)
from pymongo.asynchronous.client_session import AsyncClientSession
from pymongo.asynchronous.collection import AsyncCollection
from pymongo.asynchronous.command_cursor import AsyncCommandCursor
from pymongo.asynchronous.command_runner import (
Expand All @@ -52,6 +49,7 @@
_merge_command,
_throw_client_bulk_write_exception,
)
from pymongo.client_session_shared import _validate_session_write_concern
from pymongo.common import (
validate_is_document_type,
validate_ok_for_replace,
Expand Down
Loading
Loading