Skip to content

Commit a9c63c8

Browse files
committed
fix typing again
1 parent bc76aae commit a9c63c8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pymongo/encryption_options.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
from pymongo.uri_parser_shared import _parse_kms_tls_options
3636

3737
if TYPE_CHECKING:
38+
from pymongo.pyopenssl_context import SSLContext
3839
from pymongo.typings import _AgnosticMongoClient, _DocumentTypeArg
3940

4041

@@ -237,7 +238,7 @@ def __init__(
237238
self._mongocryptd_spawn_args.append("--idleShutdownTimeoutSecs=60")
238239
# Maps KMS provider name to a SSLContext.
239240
self._kms_tls_options = kms_tls_options
240-
self._kms_ssl_contexts = {}
241+
self._kms_ssl_contexts: dict[str, SSLContext] = {}
241242
self._bypass_query_analysis = bypass_query_analysis
242243
self._key_expiration_ms = key_expiration_ms
243244

0 commit comments

Comments
 (0)