Skip to content

Commit f3e240e

Browse files
committed
lint
1 parent ff0afaa commit f3e240e

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
@@ -1149,7 +1149,7 @@ def __init__(
11491149
# will notice the first thread already did the work and simply
11501150
# release the lock.
11511151
self._fork_lock = threading.Lock()
1152-
self._index_available_connections= index_available_connections
1152+
self._index_available_connections = index_available_connections
11531153
self.reset()
11541154

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

0 commit comments

Comments
 (0)