remove unused context from get_cached

This commit is contained in:
2017-09-22 08:26:11 +02:00
parent 0ce4cc658b
commit d6bbbd87f5
2 changed files with 183 additions and 183 deletions

View File

@ -66,7 +66,7 @@ class Cache(object):
"empty the cache"
self._cache.clear()
def get_cached(self, context):
def get_cached(self):
"""return all values in a dictionary
example: {'path1': {'index1': ('value1', 'time1')}, 'path2': {'index2': ('value2', 'time2', )}}
"""