Skip to content

Commit

Permalink
remove OpenSSL from typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Vulwsztyn committed Sep 20, 2024
1 parent 7644229 commit 4b76013
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions redis/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from itertools import chain
from typing import Any, Callable, Dict, List, Mapping, Optional, Type, Union

import OpenSSL
from redis._cache import (
DEFAULT_ALLOW_LIST,
DEFAULT_DENY_LIST,
Expand Down Expand Up @@ -203,7 +202,7 @@ def __init__(
ssl_password: Optional[str] = None,
ssl_validate_ocsp: bool = False,
ssl_validate_ocsp_stapled: bool = False,
ssl_ocsp_context: Optional[OpenSSL.SSL.Context] = None,
ssl_ocsp_context=None,
ssl_ocsp_expected_cert: Optional[str] = None,
ssl_min_version: Optional[ssl.TLSVersion] = None,
ssl_ciphers: Optional[str] = None,
Expand Down

0 comments on commit 4b76013

Please sign in to comment.