From 413ccb085580b09fa98421906d7d24f9fc45a18a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 1 Aug 2023 03:11:04 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- exactdiag/cache.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/exactdiag/cache.py b/exactdiag/cache.py index 61e24ed..9cf075c 100644 --- a/exactdiag/cache.py +++ b/exactdiag/cache.py @@ -58,7 +58,6 @@ def getsizeof(obj, seen=None): class AbstractCache(abc.MutableMapping, ABC): - RAND = "RAND" FIFO = "FIFO" LRU = "LRU" @@ -147,7 +146,6 @@ def __repr__(self): class EigenCache(AbstractCache): - FILE_PREFIX = "eig_" def __init__(self, root="", maxcount=0, maxsize=0, policy="FIFO", autosave=True):