Skip to content

Commit 28752f5

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent af4a8b8 commit 28752f5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

exactdiag/cache.py

-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def getsizeof(obj, seen=None):
5858

5959

6060
class AbstractCache(abc.MutableMapping, ABC):
61-
6261
RAND = "RAND"
6362
FIFO = "FIFO"
6463
LRU = "LRU"
@@ -147,7 +146,6 @@ def __repr__(self):
147146

148147

149148
class EigenCache(AbstractCache):
150-
151149
FILE_PREFIX = "eig_"
152150

153151
def __init__(self, root="", maxcount=0, maxsize=0, policy="FIFO", autosave=True):

0 commit comments

Comments
 (0)