diff --git a/stuff/hidestatusbar.py b/stuff/hidestatusbar.py index 8626377..649aafd 100644 --- a/stuff/hidestatusbar.py +++ b/stuff/hidestatusbar.py @@ -28,5 +28,6 @@ def copy(self): os.makedirs(rro_dir) shutil.copyfile(self.download_loc, os.path.join(rro_dir, "hidestatusbar.apk")) + @property def skip_extract(self): return True diff --git a/stuff/mitm.py b/stuff/mitm.py index 46a2317..2a8b551 100644 --- a/stuff/mitm.py +++ b/stuff/mitm.py @@ -16,8 +16,8 @@ def __init__(self, ca_cert_file: str = None) -> None: def download(self): raise NotImplementedError() - @staticmethod - def skip_extract(): + @property + def skip_extract(self): return True def copy(self):