Skip to content

Commit 750a9aa

Browse files
committed
fix error
1 parent 6752a67 commit 750a9aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymongo/network_layer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
_UNPACK_COMPRESSION_HEADER = struct.Struct("<iiB").unpack
6868
_POLL_TIMEOUT = 0.5
6969
# Errors raised by sockets (and TLS sockets) when in non-blocking mode.
70-
BLOCKING_IO_ERRORS = (BlockingIOError, *BLOCKING_IO_LOOKUP_ERROR, *ssl_support.BLOCKING_IO_ERRORS)
70+
BLOCKING_IO_ERRORS = (BlockingIOError, BLOCKING_IO_LOOKUP_ERROR, *ssl_support.BLOCKING_IO_ERRORS)
7171

7272

7373
# These socket-based I/O methods are for KMS requests and any other network operations that do not use

0 commit comments

Comments
 (0)