File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 33
33
34
34
35
35
user_cache_root = Path (
36
- platformdirs .user_cache_root (
36
+ platformdirs .user_cache_dir (
37
37
appname = "pydra" ,
38
38
appauthor = "nipype" ,
39
39
version = __version__ ,
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ class PersistentCache:
88
88
The locally unique key is hashed (cheaply) using hashlib cryptography and this
89
89
"local hash" is use to name the entry of the (potentially expensive) hash of the
90
90
object itself (e.g. the contents of a file). This entry is saved as a text file
91
- within a user-specific cache directory (see `platformdirs.user_cache_root `), with
91
+ within a user-specific cache directory (see `platformdirs.user_cache_dir `), with
92
92
the name of the file being the "local hash" of the key and the contents of the
93
93
file being the "globally unique hash" of the object itself.
94
94
You can’t perform that action at this time.
0 commit comments