Skip to content

Commit

Permalink
fixing Cache.__init__ signature changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sibiryakov committed Apr 5, 2019
1 parent f20de81 commit 45576af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontera/contrib/backends/hbase/domaincache.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class LRUCache(Cache):
"""Least Recently Used (LRU) cache implementation."""

def __init__(self, maxsize, missing=None, getsizeof=None):
Cache.__init__(self, maxsize, missing, getsizeof)
Cache.__init__(self, maxsize, missing=missing, getsizeof=getsizeof)
self.__order = collections.OrderedDict()

def __getitem__(self, key, cache_getitem=Cache.__getitem__):
Expand Down

0 comments on commit 45576af

Please sign in to comment.