File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 11
11
from typing import (
12
12
Any ,
13
13
Callable ,
14
+ Coroutine ,
14
15
Deque ,
15
16
Dict ,
16
17
Generator ,
17
18
List ,
18
19
Mapping ,
19
20
Optional ,
21
+ Set ,
20
22
Tuple ,
21
23
Type ,
22
24
TypeVar ,
23
25
Union ,
24
- Set ,
25
- Coroutine ,
26
26
)
27
27
28
28
from redis ._parsers import AsyncCommandsParser , Encoder
60
60
ClusterDownError ,
61
61
ClusterError ,
62
62
ConnectionError ,
63
+ CrossSlotTransactionError ,
63
64
DataError ,
65
+ ExecAbortError ,
66
+ InvalidPipelineStack ,
64
67
MaxConnectionsError ,
65
68
MovedError ,
66
69
RedisClusterException ,
69
72
SlotNotCoveredError ,
70
73
TimeoutError ,
71
74
TryAgainError ,
72
- CrossSlotTransactionError ,
73
75
WatchError ,
74
- ExecAbortError ,
75
- InvalidPipelineStack ,
76
76
)
77
77
from redis .typing import AnyKeyT , EncodableT , KeyT
78
78
from redis .utils import (
You can’t perform that action at this time.
0 commit comments