Skip to content

Commit 0fcb843

Browse files
committed
Fix final CI check: run black formatter
1 parent a1576df commit 0fcb843

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

external-import/echocti/src/echocti/converter.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,7 @@ def convert_ioc(
181181
return None
182182

183183
# Determine type
184-
ioc_type = (
185-
ioc_data.get("type") or ioc_data.get("ioc_type") or feed_type
186-
)
184+
ioc_type = ioc_data.get("type") or ioc_data.get("ioc_type") or feed_type
187185
detected_type = self.detect_ioc_type(str(value), ioc_type)
188186

189187
# Create STIX pattern

0 commit comments

Comments
 (0)