From d09e1c8ee2c780bfbffc4092395593c1bbaef24c Mon Sep 17 00:00:00 2001 From: manasghandat Date: Fri, 31 Mar 2023 12:29:26 +0530 Subject: [PATCH] fix linting error --- capa/features/extractors/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/features/extractors/common.py b/capa/features/extractors/common.py index 39411bde..6beaa72d 100644 --- a/capa/features/extractors/common.py +++ b/capa/features/extractors/common.py @@ -68,7 +68,7 @@ def extract_format(buf) -> Iterator[Tuple[Feature, Address]]: def extract_arch(buf) -> Iterator[Tuple[Feature, Address]]: if buf.startswith(MATCH_PE): yield from capa.features.extractors.pefile.extract_file_arch(pe=pefile.PE(data=buf)) - + elif buf.startswith(MATCH_RESULT): yield Arch(ARCH_ANY), NO_ADDRESS