Skip to content

Commit a760351

Browse files
committed
Fixes path name
1 parent 375d78f commit a760351

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

async_substrate_interface/utils/cache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
USE_CACHE = True if os.getenv("NO_CACHE") != "1" else False
88
CACHE_LOCATION = (
99
os.path.expanduser(
10-
os.getenv("CACHE_LOCATION", "~/.cache/async-substrate_interface")
10+
os.getenv("CACHE_LOCATION", "~/.cache/async-substrate-interface")
1111
)
1212
if USE_CACHE
1313
else ":memory:"

0 commit comments

Comments
 (0)