Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion openmmtools/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def time_to_live(self, new_time_to_live):

def empty(self):
"""Purge the cache."""
self._data = collections.OrderedDict()
for context in list(self._data.keys()):
del self._data[context]

def __getitem__(self, key):
# When we access data, push element at the
Expand Down