We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b3c6bb commit 9336f58Copy full SHA for 9336f58
pymongo/ssl_support.py
@@ -56,7 +56,7 @@
56
57
if HAVE_PYSSL:
58
HAS_SNI = _pyssl.HAS_SNI | _ssl.HAS_SNI
59
- PYSSLError = _pyssl.SSLError
+ PYSSLError: Any = _pyssl.SSLError
60
BLOCKING_IO_ERRORS: Any = _pyssl.BLOCKING_IO_ERRORS + _ssl.BLOCKING_IO_ERRORS
61
BLOCKING_IO_READ_ERROR: Any = _pyssl.BLOCKING_IO_READ_ERROR | _ssl.BLOCKING_IO_READ_ERROR
62
BLOCKING_IO_WRITE_ERROR: Any = _pyssl.BLOCKING_IO_WRITE_ERROR | _ssl.BLOCKING_IO_WRITE_ERROR
0 commit comments