We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db76f11 commit b2c0ae4Copy full SHA for b2c0ae4
diskcache/fanout.py
@@ -664,4 +664,4 @@ def index(self, name):
664
return index
665
666
667
-FanoutCache.memoize = Cache.memoize
+FanoutCache.memoize = Cache.memoize # type: ignore
diskcache/persistent.py
@@ -591,7 +591,7 @@ def rotate(self, steps=1):
591
else:
592
self.append(value)
593
594
- __hash__ = None
+ __hash__ = None # type: ignore
595
596
@contextmanager
597
def transact(self):
@@ -1033,7 +1033,7 @@ def items(self):
1033
"""
1034
return ItemsView(self)
1035
1036
1037
1038
def __getstate__(self):
1039
return self.directory
0 commit comments