From 9595af64e7d803f51aa1bf73e189dc73638db13d Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 8 Jan 2024 19:19:30 +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):