summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKosuke <kosuke.zhang@gmail.com>2023-02-06 19:20:07 +0800
committerGitHub <noreply@github.com>2023-02-06 13:20:07 +0200
commit31a1c0b7908e157f80e39a00597defa4d76c5ca1 (patch)
tree89885a9f0bf6b0fb2258f4e65a42eac6b78ddfa2
parent428d60940f386d3680a413aa327889308f82c5de (diff)
downloadredis-py-31a1c0b7908e157f80e39a00597defa4d76c5ca1.tar.gz
Fix: tuple function cannot be passed more than one argument (#2573)
-rw-r--r--redis/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/__init__.py b/redis/__init__.py
index 3ab6970..b8850ad 100644
--- a/redis/__init__.py
+++ b/redis/__init__.py
@@ -56,7 +56,7 @@ except metadata.PackageNotFoundError:
try:
VERSION = tuple(map(int_or_str, __version__.split(".")))
except AttributeError:
- VERSION = tuple(99, 99, 99)
+ VERSION = tuple([99, 99, 99])
__all__ = [
"AuthenticationError",