Skip to content

Commit 921979c

Browse files
committed
fixed import issue
1 parent 7e60c41 commit 921979c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pydra/utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22
import platformdirs
3-
from pydra import __version__
3+
from pydra._version import __version__
44

55
user_cache_dir = Path(
66
platformdirs.user_cache_dir(

pydra/utils/hash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def location_default(cls):
9898
try:
9999
location = os.environ[cls.LOCATION_ENV_VAR]
100100
except KeyError:
101-
location = user_cache_dir / "hash_cache"
101+
location = user_cache_dir / "hashes"
102102
return location
103103

104104
# the default needs to be an instance method

0 commit comments

Comments
 (0)