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):
i = -1
to_eject = []
for value in self.ring:
if ((target or target_size_bytes) and
(not target or self.non_ghost_count <= target) and
(self.total_estimated_size <= target_size_bytes or
not target_size_bytes)):
if ((target or target_size_bytes)
and (not target or self.non_ghost_count <= target)
and (self.total_estimated_size <= target_size_bytes
or not target_size_bytes)):
break
i += 1
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