Commit 1cf8f014 authored by Yusei Tahara's avatar Yusei Tahara

Line should break before the binary operators.

parent 01a7f4a3
...@@ -336,10 +336,10 @@ class PickleCache(object): ...@@ -336,10 +336,10 @@ class PickleCache(object):
i = -1 i = -1
to_eject = [] to_eject = []
for value in self.ring: for value in self.ring:
if ((target or target_size_bytes) and if ((target or target_size_bytes)
(not target or self.non_ghost_count <= target) and and (not target or self.non_ghost_count <= target)
(self.total_estimated_size <= target_size_bytes or and (self.total_estimated_size <= target_size_bytes
not target_size_bytes)): or not target_size_bytes)):
break break
i += 1 i += 1
if value._p_state == UPTODATE: if value._p_state == UPTODATE:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment