Skip to content

Commit

Permalink
Fix: tuple function cannot be passed more than one argument (#2573)
Browse files Browse the repository at this point in the history
  • Loading branch information
kosuke-zhang committed Feb 6, 2023
1 parent 428d609 commit 31a1c0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def int_or_str(value):
try:
VERSION = tuple(map(int_or_str, __version__.split(".")))
except AttributeError:
VERSION = tuple(99, 99, 99)
VERSION = tuple([99, 99, 99])

__all__ = [
"AuthenticationError",
Expand Down

0 comments on commit 31a1c0b

Please sign in to comment.