feat: use a more meaningful name for the request caching files

This commit is contained in:
Benex254
2024-09-30 13:20:14 +03:00
parent 3c22232432
commit 2ce9bf6c47

View File

@@ -18,8 +18,8 @@ class AnimeProvider:
from ..common.requests_cacher import CachedRequestsSession
self.session = CachedRequestsSession(
os.path.join(APP_CACHE_DIR, "cached_requests.db"),
os.path.join(APP_CACHE_DIR, "cached_requests.lock"),
os.path.join(APP_CACHE_DIR, "anime_provider_cached_requests.db"),
os.path.join(APP_CACHE_DIR, "anime_provider_cached_requests.lock"),
)
else:
self.session = requests.session()