From 14abb7d4f65047c825dfaf55bd0d242ef2148f19 Mon Sep 17 00:00:00 2001 From: William Ballenthin Date: Tue, 27 Apr 2021 13:41:59 -0600 Subject: [PATCH] pep8 --- scripts/show-features.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/show-features.py b/scripts/show-features.py index 0b65fd57..8960deca 100644 --- a/scripts/show-features.py +++ b/scripts/show-features.py @@ -100,7 +100,9 @@ def main(argv=None): extractor = capa.features.freeze.load(f.read()) else: try: - extractor = capa.main.get_extractor(args.sample, args.format, capa.main.BACKEND_VIV, sigpaths=args.signatures) + extractor = capa.main.get_extractor( + args.sample, args.format, capa.main.BACKEND_VIV, sigpaths=args.signatures + ) except capa.main.UnsupportedFormatError: logger.error("-" * 80) logger.error(" Input file does not appear to be a PE file.")