Skip to content

Commit

Permalink
retry_on_error more specific typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Vulwsztyn committed Feb 4, 2025
1 parent dd22102 commit f5e9163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def __init__(
errors: Optional[str] = None,
decode_responses: bool = False,
retry_on_timeout: bool = False,
retry_on_error: Optional[list] = None,
retry_on_error: Optional[List[Type[Exception]]] = None,
ssl: bool = False,
ssl_keyfile: Optional[str] = None,
ssl_certfile: Optional[str] = None,
Expand Down

0 comments on commit f5e9163

Please sign in to comment.