🎨 Added version to cache key

This commit is contained in:
Nikhil Badyal
2025-04-19 17:56:45 +05:30
parent d48e263493
commit 2968a032cd
2 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ def main() -> None:
logger.info(f"Will Patch only {config.apps}")
# Caches for reuse
download_cache: dict[str, tuple[str, str]] = {}
download_cache: dict[tuple[str, str], tuple[str, str]] = {}
resource_cache: dict[str, tuple[str, str]] = {}
for possible_app in config.apps: