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 4e7d62b commit c0f4372Copy full SHA for c0f4372
redis/asyncio/cluster.py
@@ -11,18 +11,18 @@
11
from typing import (
12
Any,
13
Callable,
14
+ Coroutine,
15
Deque,
16
Dict,
17
Generator,
18
List,
19
Mapping,
20
Optional,
21
+ Set,
22
Tuple,
23
Type,
24
TypeVar,
25
Union,
- Set,
- Coroutine,
26
)
27
28
from redis._parsers import AsyncCommandsParser, Encoder
@@ -60,7 +60,10 @@
60
ClusterDownError,
61
ClusterError,
62
ConnectionError,
63
+ CrossSlotTransactionError,
64
DataError,
65
+ ExecAbortError,
66
+ InvalidPipelineStack,
67
MaxConnectionsError,
68
MovedError,
69
RedisClusterException,
@@ -69,10 +72,7 @@
72
SlotNotCoveredError,
70
73
TimeoutError,
71
74
TryAgainError,
- CrossSlotTransactionError,
75
WatchError,
- ExecAbortError,
- InvalidPipelineStack,
76
77
from redis.typing import AnyKeyT, EncodableT, KeyT
78
from redis.utils import (
0 commit comments