Skip to content

Commit c0f4372

Browse files
committed
Codestyle fix
1 parent 4e7d62b commit c0f4372

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

redis/asyncio/cluster.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
from typing import (
1212
Any,
1313
Callable,
14+
Coroutine,
1415
Deque,
1516
Dict,
1617
Generator,
1718
List,
1819
Mapping,
1920
Optional,
21+
Set,
2022
Tuple,
2123
Type,
2224
TypeVar,
2325
Union,
24-
Set,
25-
Coroutine,
2626
)
2727

2828
from redis._parsers import AsyncCommandsParser, Encoder
@@ -60,7 +60,10 @@
6060
ClusterDownError,
6161
ClusterError,
6262
ConnectionError,
63+
CrossSlotTransactionError,
6364
DataError,
65+
ExecAbortError,
66+
InvalidPipelineStack,
6467
MaxConnectionsError,
6568
MovedError,
6669
RedisClusterException,
@@ -69,10 +72,7 @@
6972
SlotNotCoveredError,
7073
TimeoutError,
7174
TryAgainError,
72-
CrossSlotTransactionError,
7375
WatchError,
74-
ExecAbortError,
75-
InvalidPipelineStack,
7676
)
7777
from redis.typing import AnyKeyT, EncodableT, KeyT
7878
from redis.utils import (

0 commit comments

Comments
 (0)