Related black changes :)

This commit is contained in:
Rory Flynn 2024-01-31 11:04:10 +01:00
parent 27a7497a7c
commit a6bf66fe48
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ class SMSAttachments(IOSExtraction):
def check_indicators(self) -> None:
for attachment in self.results:
# Check for known malicious filenames.
if self.indicators and self.indicators.check_file_path(attachment["filename"]):
if self.indicators and self.indicators.check_file_path(
attachment["filename"]
):
self.detected.append(attachment)
if (