(self)
| 345 | self._cache.collection.move_to_end(cache_key) |
| 346 | |
| 347 | def _assert_cache(self): |
| 348 | if self.cache is None or not isinstance(self.cache, CacheInterface): |
| 349 | raise ValueError("Eviction policy should be associated with valid cache.") |
| 350 | |
| 351 | |
| 352 | class EvictionPolicy(Enum): |
no outgoing calls
no test coverage detected