We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc7aa9c commit e903526Copy full SHA for e903526
valkey/__init__.py
@@ -1,4 +1,5 @@
1
from importlib import metadata
2
+from typing import Tuple, Union
3
4
from valkey import asyncio # noqa
5
from valkey.backoff import default_backoff
@@ -45,7 +46,7 @@ def int_or_str(value):
45
46
47
48
__version__: str
-VERSION: tuple[int | str, ...]
49
+VERSION: Tuple[Union[int | str], ...]
50
51
try:
52
__version__ = metadata.version("valkey")
0 commit comments