Skip to content

Commit bed4d73

Browse files
committed
Fixed line length
1 parent 726803a commit bed4d73

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

redis/connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,8 @@ def _on_invalidation_callback(self, data: List[Union[str, Optional[List[str]]]])
889889
for key in data[1]:
890890
normalized_key = ensure_string(key)
891891
if normalized_key in self._keys_mapping:
892-
# Make sure that all command responses associated with this key will be deleted
892+
# Make sure that all command responses
893+
# associated with this key will be deleted
893894
for cache_key in self._keys_mapping[normalized_key]:
894895
self._cache.pop(cache_key)
895896
# Removes key from mapping cache

0 commit comments

Comments
 (0)