Skip to content

Commit

Permalink
fixed import issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Mar 17, 2024
1 parent 7e60c41 commit 921979c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pydra/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pathlib import Path
import platformdirs
from pydra import __version__
from pydra._version import __version__

user_cache_dir = Path(
platformdirs.user_cache_dir(
Expand Down
2 changes: 1 addition & 1 deletion pydra/utils/hash.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def location_default(cls):
try:
location = os.environ[cls.LOCATION_ENV_VAR]
except KeyError:
location = user_cache_dir / "hash_cache"
location = user_cache_dir / "hashes"
return location

# the default needs to be an instance method
Expand Down

0 comments on commit 921979c

Please sign in to comment.