mirror of
https://github.com/mvt-project/mvt.git
synced 2026-02-13 00:52:44 +00:00
Fixing exceeding lines length
This commit is contained in:
@@ -17,8 +17,8 @@ class CmdAndroidCheckADB(Command):
|
||||
name = "check-adb"
|
||||
modules = ADB_MODULES
|
||||
|
||||
def __init__(self, target_path=None, results_path=None, ioc_files=[], module_name=None,
|
||||
serial=None, fast_mode=False):
|
||||
super().__init__(target_path=target_path, results_path=results_path, ioc_files=ioc_files,
|
||||
module_name=module_name, serial=serial,
|
||||
fast_mode=fast_mode, log=log)
|
||||
def __init__(self, target_path=None, results_path=None, ioc_files=[],
|
||||
module_name=None, serial=None, fast_mode=False):
|
||||
super().__init__(target_path=target_path, results_path=results_path,
|
||||
ioc_files=ioc_files, module_name=module_name,
|
||||
serial=serial, fast_mode=fast_mode, log=log)
|
||||
|
||||
@@ -26,11 +26,11 @@ class CmdAndroidCheckBackup(Command):
|
||||
name = "check-backup"
|
||||
modules = BACKUP_MODULES
|
||||
|
||||
def __init__(self, target_path=None, results_path=None, ioc_files=[], module_name=None,
|
||||
serial=None, fast_mode=False):
|
||||
super().__init__(target_path=target_path, results_path=results_path, ioc_files=ioc_files,
|
||||
module_name=module_name, serial=serial,
|
||||
fast_mode=fast_mode, log=log)
|
||||
def __init__(self, target_path=None, results_path=None, ioc_files=[],
|
||||
module_name=None, serial=None, fast_mode=False):
|
||||
super().__init__(target_path=target_path, results_path=results_path,
|
||||
ioc_files=ioc_files, module_name=module_name,
|
||||
serial=serial, fast_mode=fast_mode, log=log)
|
||||
|
||||
self.backup_type = None
|
||||
self.backup_archive = None
|
||||
|
||||
@@ -20,11 +20,11 @@ class CmdAndroidCheckBugreport(Command):
|
||||
name = "check-bugreport"
|
||||
modules = BUGREPORT_MODULES
|
||||
|
||||
def __init__(self, target_path=None, results_path=None, ioc_files=[], module_name=None,
|
||||
serial=None, fast_mode=False):
|
||||
super().__init__(target_path=target_path, results_path=results_path, ioc_files=ioc_files,
|
||||
module_name=module_name, serial=serial,
|
||||
fast_mode=fast_mode, log=log)
|
||||
def __init__(self, target_path=None, results_path=None, ioc_files=[],
|
||||
module_name=None, serial=None, fast_mode=False):
|
||||
super().__init__(target_path=target_path, results_path=results_path,
|
||||
ioc_files=ioc_files, module_name=module_name,
|
||||
serial=serial, fast_mode=fast_mode, log=log)
|
||||
|
||||
self.bugreport_format = None
|
||||
self.bugreport_archive = None
|
||||
|
||||
Reference in New Issue
Block a user