File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ async def run_operation(
224
224
if use_cmd :
225
225
first = docs [0 ]
226
226
await operation .client ._process_response (first , operation .session ) # type: ignore[misc, arg-type]
227
- _check_command_response (first , conn .max_wire_version , pool_opts = conn .opts )
227
+ _check_command_response (first , conn .max_wire_version , pool_opts = conn .opts ) # type:ignore[has-type]
228
228
except Exception as exc :
229
229
duration = datetime .now () - start
230
230
if isinstance (exc , (NotPrimaryError , OperationFailure )):
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ def run_operation(
224
224
if use_cmd :
225
225
first = docs [0 ]
226
226
operation .client ._process_response (first , operation .session ) # type: ignore[misc, arg-type]
227
- _check_command_response (first , conn .max_wire_version , pool_opts = conn .opts )
227
+ _check_command_response (first , conn .max_wire_version , pool_opts = conn .opts ) # type:ignore[has-type]
228
228
except Exception as exc :
229
229
duration = datetime .now () - start
230
230
if isinstance (exc , (NotPrimaryError , OperationFailure )):
You can’t perform that action at this time.
0 commit comments