From f4437b30b1e4f46c3e050b79ee99e7281e8b4419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Donncha=20=C3=93=20Cearbhaill?= Date: Wed, 16 Oct 2024 16:35:28 +0200 Subject: [PATCH] Fix black formatting --- mvt/common/indicators.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mvt/common/indicators.py b/mvt/common/indicators.py index 0fdf2b2..94f7720 100644 --- a/mvt/common/indicators.py +++ b/mvt/common/indicators.py @@ -51,7 +51,9 @@ class Indicators: if os.path.isfile(path) and path.lower().endswith(".stix2"): self.parse_stix2(path) if os.path.isdir(path): - for file in glob.glob(os.path.join(path, "**", "*.stix2", recursive=True)): + for file in glob.glob( + os.path.join(path, "**", "*.stix2", recursive=True) + ): self.parse_stix2(file) else: self.log.error(