Core: update modules (#1612)

This commit is contained in:
Fabian Dill
2023-03-30 15:30:43 +02:00
committed by GitHub
parent af44c1ba3d
commit cd4fd18706
2 changed files with 5 additions and 5 deletions

View File

@@ -151,8 +151,8 @@ def cache_path(*path: str) -> str:
if hasattr(cache_path, "cached_path"):
pass
else:
import appdirs
cache_path.cached_path = appdirs.user_cache_dir("Archipelago", False)
import platformdirs
cache_path.cached_path = platformdirs.user_cache_dir("Archipelago", False)
return os.path.join(cache_path.cached_path, *path)