We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff93817 commit e6968f8Copy full SHA for e6968f8
1 file changed
redis/asyncio/client.py
@@ -30,6 +30,8 @@
30
SSLConnection,
31
UnixDomainSocketConnection,
32
)
33
+from redis.asyncio.lock import Lock
34
+from redis.asyncio.retry import Retry
35
from redis.client import (
36
EMPTY_RESPONSE,
37
NEVER_DECODE,
@@ -53,8 +55,6 @@
53
55
TimeoutError,
54
56
WatchError,
57
-from redis.lock import Lock
-from redis.retry import Retry
58
from redis.typing import ChannelT, EncodableT, KeyT
59
from redis.utils import safe_str, str_if_bytes
60
0 commit comments