Skip to content

Commit

Permalink
Fix paths to interim folders
Browse files Browse the repository at this point in the history
  • Loading branch information
oscgonfer committed May 9, 2024
1 parent d13cb28 commit 89f9b25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scdata/_config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ def get_paths(self):
# Check for blueprints and calibrations
# Find the path to the interim folder
_dir = dirname(__file__)
_idir = join(_dir, 'interim')
_idir = join(_dir, '../tools/interim')

# - Models and local tests
_paths['models'] = join(_paths['data'], 'models')
Expand Down Expand Up @@ -645,7 +645,7 @@ def get_paths(self):

# Check for uploads
_example_uploads = ['example_upload_1.json', 'example_zenodo_upload.yaml']
_udir = join(_dir, 'uploads')
_udir = join(_dir, '../tools/uploads')
for item in _example_uploads:
s = join(_udir, item)
d = join(_paths['uploads'], item)
Expand Down

0 comments on commit 89f9b25

Please sign in to comment.