Skip to content

Commit

Permalink
Merge pull request #366 from scrapinghub/test-fix3
Browse files Browse the repository at this point in the history
Tests fix
  • Loading branch information
sibiryakov authored Apr 5, 2019
2 parents f20de81 + 22d3bc5 commit fd294e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontera/contrib/backends/hbase/domaincache.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
class LRUCache(Cache):
"""Least Recently Used (LRU) cache implementation."""

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

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

0 comments on commit fd294e0

Please sign in to comment.