📝 Updated inclusion logic

This commit is contained in:
Nikhil Badyal
2023-12-22 12:57:30 +05:30
committed by Nikhil Badyal
parent c0b34db784
commit 639382ed38
2 changed files with 9 additions and 11 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ class Patches(object):
app.no_of_patches = len(self.patches_dict[app.app_name])
def __init__(self: Self, config: RevancedConfig, app: APP) -> None:
self.patches_dict: dict[str, Any] = {"universal_patch": []}
self.patches_dict: dict[str, list[dict[str, str]]] = {"universal_patch": []}
self.fetch_patches(config, app)
def get(self: Self, app: str) -> tuple[list[dict[str, str]], str]: