Skip to content

Commit c75db8d

Browse files
committed
lint
1 parent f504741 commit c75db8d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

redis/asyncio/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ def __init__(
11311131

11321132
self._available_connections: ConnectionsIndexer = ConnectionsIndexer()
11331133
self._in_use_connections: Set[AbstractConnection] = set()
1134-
self._index_available_connections= index_available_connections
1134+
self._index_available_connections = index_available_connections
11351135
self.encoder_class = self.connection_kwargs.get("encoder_class", Encoder)
11361136

11371137
def __repr__(self):

redis/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,7 @@ def __init__(
11551155
# will notice the first thread already did the work and simply
11561156
# release the lock.
11571157
self._fork_lock = threading.Lock()
1158-
self._index_available_connections= index_available_connections
1158+
self._index_available_connections = index_available_connections
11591159
self.reset()
11601160

11611161
def __repr__(self) -> (str, str):

0 commit comments

Comments
 (0)