Skip to content

Commit

Permalink
Update bsa_utils.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjwood16 committed Nov 20, 2024
1 parent 8d98909 commit 8863759
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bsa_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down

0 comments on commit 8863759

Please sign in to comment.