From 7fc664185c65ab6d5067273bc1d210ff025dff8e Mon Sep 17 00:00:00 2001 From: Nex Date: Wed, 20 Jul 2022 15:49:51 +0200 Subject: [PATCH] Flake8 fixes --- mvt/android/modules/adb/sms.py | 4 ++-- mvt/ios/modules/backup/profile_events.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mvt/android/modules/adb/sms.py b/mvt/android/modules/adb/sms.py index 493a1f5..f41374e 100644 --- a/mvt/android/modules/adb/sms.py +++ b/mvt/android/modules/adb/sms.py @@ -124,7 +124,7 @@ class SMS(AndroidExtraction): try: self.results = parse_tar_for_sms(backup_tar) except AndroidBackupParsingError: - self.log.info("Impossible to read SMS from the Android Backup, please extract "\ + self.log.info("Impossible to read SMS from the Android Backup, please extract " "the SMS and try extracting it with Android Backup Extractor") return @@ -142,6 +142,6 @@ class SMS(AndroidExtraction): except InsufficientPrivileges: pass - self.log.warn("No SMS database found. Trying extraction of SMS data using " \ + self.log.warn("No SMS database found. Trying extraction of SMS data using " "Android backup feature.") self._extract_sms_adb() diff --git a/mvt/ios/modules/backup/profile_events.py b/mvt/ios/modules/backup/profile_events.py index b39dec9..f2af9dd 100644 --- a/mvt/ios/modules/backup/profile_events.py +++ b/mvt/ios/modules/backup/profile_events.py @@ -31,7 +31,7 @@ class ProfileEvents(IOSExtraction): "timestamp": record.get("timestamp"), "module": self.__class__.__name__, "event": "profile_operation", - "data": f"Process {record.get('process')} started operation " \ + "data": f"Process {record.get('process')} started operation " f"{record.get('operation')} of profile {record.get('profile_id')}" }