Skip to content

Commit 6d1b150

Browse files
committed
Codestyle fixes
1 parent a3f6366 commit 6d1b150

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

redis/cluster.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3021,7 +3021,12 @@ class TransactionStrategy(AbstractStrategy):
30213021
IMMEDIATE_EXECUTE_COMMANDS = {"WATCH", "UNWATCH"}
30223022
UNWATCH_COMMANDS = {"DISCARD", "EXEC", "UNWATCH"}
30233023
SLOT_REDIRECT_ERRORS = (AskError, MovedError)
3024-
CONNECTION_ERRORS = (ConnectionError, OSError, ClusterDownError,SlotNotCoveredError)
3024+
CONNECTION_ERRORS = (
3025+
ConnectionError,
3026+
OSError,
3027+
ClusterDownError,
3028+
SlotNotCoveredError,
3029+
)
30253030

30263031
def __init__(self, pipe: ClusterPipeline):
30273032
super().__init__(pipe)

0 commit comments

Comments
 (0)