From 88637591938525c8e1ccef5786d3555027d14345 Mon Sep 17 00:00:00 2001 From: Chris Wood <96439159+chrisjwood16@users.noreply.github.com> Date: Wed, 20 Nov 2024 13:49:58 +0000 Subject: [PATCH] Update bsa_utils.py --- src/bsa_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bsa_utils.py b/src/bsa_utils.py index 9b6f81d..3ded244 100644 --- a/src/bsa_utils.py +++ b/src/bsa_utils.py @@ -25,7 +25,8 @@ def __init__(self): self.action_method = 'datastore_search_sql?' # Create data directory if it doesn't exist - self.DATA_DIR = os.path.join("..", "data") + #self.DATA_DIR = os.path.join("..", "data") + self.DATA_DIR = os.path.join(os.getcwd(), "data") self.CACHE_DIR = os.path.join(self.DATA_DIR, "cache") self.CACHE_DB = os.path.join(self.CACHE_DIR, "cache_db.sqlite")