🚨 Added object inheritance [skip ci]

This commit is contained in:
Nikhil Badyal
2023-08-25 15:56:57 +05:30
parent 77377cdd48
commit c7da3ab247
7 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ from src.config import RevancedConfig
from src.exceptions import AppNotFoundError, PatchesJsonLoadError
class Patches:
class Patches(object):
"""Revanced Patches."""
revanced_package_names: ClassVar[Dict[str, str]] = {
@@ -197,7 +197,7 @@ class Patches:
return total_patches
class PatchLoader:
class PatchLoader(object):
"""Patch Loader."""
@staticmethod