Skip to content

Commit 4e85024

Browse files
committed
fix typing
1 parent 0312acb commit 4e85024

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymongo/network_layer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
_HAVE_PYOPENSSL = True
5252
except ImportError:
5353
_HAVE_PYOPENSSL = False
54-
_pysslConn = SSLSocket
54+
_pysslConn = SSLSocket # type: ignore[assignment, misc]
5555

56-
from pymongo.ssl_support import ( # type: ignore[assignment]
56+
from pymongo.ssl_support import (
5757
BLOCKING_IO_LOOKUP_ERROR,
5858
BLOCKING_IO_READ_ERROR,
5959
BLOCKING_IO_WRITE_ERROR,

0 commit comments

Comments
 (0)