aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--allocbench/artifact.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/allocbench/artifact.py b/allocbench/artifact.py
index 55daa3a..60b2ca0 100644
--- a/allocbench/artifact.py
+++ b/allocbench/artifact.py
@@ -33,13 +33,7 @@ ARTIFACT_STORE_DIR = os.path.join(ALLOCBENCHDIR, "cache")
class Artifact:
"""Base class for external ressources"""
- store = {}
-
def __init__(self, name):
- if name in Artifact.store:
- raise Exception(f'duplicate artifact "{name}"')
-
- Artifact.store[name] = self
self.name = name
self.basedir = os.path.join(ARTIFACT_STORE_DIR, name)