Skip to content

Commit

Permalink
Revert "Update __init__ for issue 2215 (redis#2539)"
Browse files Browse the repository at this point in the history
This reverts commit f14ed1f.
  • Loading branch information
SessionIssue authored Jan 5, 2023
1 parent a9ef0c5 commit 4669524
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,7 @@ def int_or_str(value):
__version__ = "99.99.99"


try:
VERSION = tuple(map(int_or_str, __version__.split(".")))
except ValueError:
VERSION = tuple(99, 99, 99)
VERSION = tuple(map(int_or_str, __version__.split(".")))

__all__ = [
"AuthenticationError",
Expand Down

0 comments on commit 4669524

Please sign in to comment.