From 2100d90511ba28ed849a35e9414bd2f9e4c75b2c Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Thu, 4 Dec 2025 11:21:13 +0100 Subject: [PATCH] chore: cleanup --- corrlib/data_backend/databackend.py | 7 ------- corrlib/data_backend/datalad.py | 13 ------------- tests/test_import_project.py | 0 3 files changed, 20 deletions(-) delete mode 100644 corrlib/data_backend/databackend.py delete mode 100644 corrlib/data_backend/datalad.py delete mode 100644 tests/test_import_project.py diff --git a/corrlib/data_backend/databackend.py b/corrlib/data_backend/databackend.py deleted file mode 100644 index dad9fee..0000000 --- a/corrlib/data_backend/databackend.py +++ /dev/null @@ -1,7 +0,0 @@ -import .datalad as dl - - -class DataBackend: - @abstractmethod - def get_file(self, data, file): - pass \ No newline at end of file diff --git a/corrlib/data_backend/datalad.py b/corrlib/data_backend/datalad.py deleted file mode 100644 index 9ccf1a6..0000000 --- a/corrlib/data_backend/datalad.py +++ /dev/null @@ -1,13 +0,0 @@ -import datalad.api as dl -import os -from corrlib.data_backend.databackend import - -def DLBackend() - -def get_file(path, file): - if file == "backlogger.db": - print("Downloading database...") - else: - print("Downloading data...") - dl.get(os.path.join(path, file), dataset=path) - print("> downloaded file") \ No newline at end of file diff --git a/tests/test_import_project.py b/tests/test_import_project.py deleted file mode 100644 index e69de29..0000000