We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 840c7ab commit d9cc05fCopy full SHA for d9cc05f
splitio/storage/adapters/cache_trait.py
@@ -140,8 +140,6 @@ def _rollover(self):
140
"""Check we're within the size limit. Otherwise drop the LRU."""
141
if len(self._data) > self._max_size:
142
next_item = self._lru.next
143
- if next_item is None:
144
- print self
145
del self._data[self._lru.key]
146
self._lru = next_item
147
self._lru.previous = None
0 commit comments