From 841d393f8b89771f00da03118cef8a292c78a8bb Mon Sep 17 00:00:00 2001 From: Yacine Elhamer Date: Tue, 11 Jul 2023 12:49:15 +0100 Subject: [PATCH] fix non-matching type issue --- capa/features/freeze/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/features/freeze/__init__.py b/capa/features/freeze/__init__.py index 491887f3..b614ce56 100644 --- a/capa/features/freeze/__init__.py +++ b/capa/features/freeze/__init__.py @@ -465,7 +465,7 @@ def dumps_dynamic(extractor: DynamicFeatureExtractor) -> str: ProcessFeatures( address=paddr, features=tuple(pfeatures), - threads=threads, + threads=tuple(threads), ) # type: ignore # Mypy is unable to recognise `basic_blocks` as a argument due to alias )