Skip to content

Commit 9336f58

Browse files
committed
fix typing
1 parent 0b3c6bb commit 9336f58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymongo/ssl_support.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
if HAVE_PYSSL:
5858
HAS_SNI = _pyssl.HAS_SNI | _ssl.HAS_SNI
59-
PYSSLError = _pyssl.SSLError
59+
PYSSLError: Any = _pyssl.SSLError
6060
BLOCKING_IO_ERRORS: Any = _pyssl.BLOCKING_IO_ERRORS + _ssl.BLOCKING_IO_ERRORS
6161
BLOCKING_IO_READ_ERROR: Any = _pyssl.BLOCKING_IO_READ_ERROR | _ssl.BLOCKING_IO_READ_ERROR
6262
BLOCKING_IO_WRITE_ERROR: Any = _pyssl.BLOCKING_IO_WRITE_ERROR | _ssl.BLOCKING_IO_WRITE_ERROR

0 commit comments

Comments
 (0)