From e29922af57abb8b799d151b48d42f6c09c9de3fd Mon Sep 17 00:00:00 2001 From: William Ballenthin Date: Wed, 9 Jun 2021 22:56:02 -0600 Subject: [PATCH] type: capa.features.extractors.pefile --- capa/features/extractors/pefile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capa/features/extractors/pefile.py b/capa/features/extractors/pefile.py index 6d9e6ae7..5ceb67cd 100644 --- a/capa/features/extractors/pefile.py +++ b/capa/features/extractors/pefile.py @@ -136,7 +136,7 @@ FILE_HANDLERS = ( class PefileFeatureExtractor(FeatureExtractor): - def __init__(self, path): + def __init__(self, path: str): super(PefileFeatureExtractor, self).__init__() self.path = path self.pe = pefile.PE(path)