Skip to content

Commit d9cc05f

Browse files
committed
remove print
1 parent 840c7ab commit d9cc05f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

splitio/storage/adapters/cache_trait.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,6 @@ def _rollover(self):
140140
"""Check we're within the size limit. Otherwise drop the LRU."""
141141
if len(self._data) > self._max_size:
142142
next_item = self._lru.next
143-
if next_item is None:
144-
print self
145143
del self._data[self._lru.key]
146144
self._lru = next_item
147145
self._lru.previous = None

0 commit comments

Comments
 (0)