Fixing exceeding lines length

This commit is contained in:
Nex 2022-06-16 15:01:07 +02:00
parent a12c4e6b93
commit c54a01ca59
3 changed files with 15 additions and 15 deletions

View File

@ -17,8 +17,8 @@ class CmdAndroidCheckADB(Command):
name = "check-adb" name = "check-adb"
modules = ADB_MODULES modules = ADB_MODULES
def __init__(self, target_path=None, results_path=None, ioc_files=[], module_name=None, def __init__(self, target_path=None, results_path=None, ioc_files=[],
serial=None, fast_mode=False): module_name=None, serial=None, fast_mode=False):
super().__init__(target_path=target_path, results_path=results_path, ioc_files=ioc_files, super().__init__(target_path=target_path, results_path=results_path,
module_name=module_name, serial=serial, ioc_files=ioc_files, module_name=module_name,
fast_mode=fast_mode, log=log) serial=serial, fast_mode=fast_mode, log=log)

View File

@ -26,11 +26,11 @@ class CmdAndroidCheckBackup(Command):
name = "check-backup" name = "check-backup"
modules = BACKUP_MODULES modules = BACKUP_MODULES
def __init__(self, target_path=None, results_path=None, ioc_files=[], module_name=None, def __init__(self, target_path=None, results_path=None, ioc_files=[],
serial=None, fast_mode=False): module_name=None, serial=None, fast_mode=False):
super().__init__(target_path=target_path, results_path=results_path, ioc_files=ioc_files, super().__init__(target_path=target_path, results_path=results_path,
module_name=module_name, serial=serial, ioc_files=ioc_files, module_name=module_name,
fast_mode=fast_mode, log=log) serial=serial, fast_mode=fast_mode, log=log)
self.backup_type = None self.backup_type = None
self.backup_archive = None self.backup_archive = None

View File

@ -20,11 +20,11 @@ class CmdAndroidCheckBugreport(Command):
name = "check-bugreport" name = "check-bugreport"
modules = BUGREPORT_MODULES modules = BUGREPORT_MODULES
def __init__(self, target_path=None, results_path=None, ioc_files=[], module_name=None, def __init__(self, target_path=None, results_path=None, ioc_files=[],
serial=None, fast_mode=False): module_name=None, serial=None, fast_mode=False):
super().__init__(target_path=target_path, results_path=results_path, ioc_files=ioc_files, super().__init__(target_path=target_path, results_path=results_path,
module_name=module_name, serial=serial, ioc_files=ioc_files, module_name=module_name,
fast_mode=fast_mode, log=log) serial=serial, fast_mode=fast_mode, log=log)
self.bugreport_format = None self.bugreport_format = None
self.bugreport_archive = None self.bugreport_archive = None