From 5af6b0285ca9cd2b8d5d079326352ef32bc2e88b Mon Sep 17 00:00:00 2001 From: Andrew Case Date: Mon, 2 Sep 2024 14:18:47 -0500 Subject: [PATCH] Address feedback --- volatility3/framework/plugins/windows/pe_symbols.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/windows/pe_symbols.py b/volatility3/framework/plugins/windows/pe_symbols.py index f221ba1a4..7c692f772 100644 --- a/volatility3/framework/plugins/windows/pe_symbols.py +++ b/volatility3/framework/plugins/windows/pe_symbols.py @@ -262,7 +262,10 @@ class PESymbols(interfaces.plugins.PluginInterface): layer_name: str, symbol_table: str, wanted_symbols: Dict[str, List[str]], - module_collector: Callable[[interfaces.context.ContextInterface, str, str, Dict[str, List[str]]], Dict[str, Tuple[str, int]]] + module_collector: Callable[ + [interfaces.context.ContextInterface, str, str, Dict[str, List[str]]], + Dict[str, Tuple[str, int]], + ], ) -> Dict[str, Tuple[str, int]]: """ Loops through each method of symbol analysis until each wanted symbol is found