From ff3bae08041b0fdc8fd07df30af92aba38a42147 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 14 Oct 2018 23:03:58 +0100 Subject: [PATCH] Fix up typing information. --- volatility/plugins/windows/verinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/plugins/windows/verinfo.py b/volatility/plugins/windows/verinfo.py index 2fae681a6..1e9dcdf4c 100644 --- a/volatility/plugins/windows/verinfo.py +++ b/volatility/plugins/windows/verinfo.py @@ -73,7 +73,7 @@ class VerInfo(interfaces_plugins.PluginInterface): def _generator(self, procs: typing.Generator[interfaces.objects.ObjectInterface, None, None], - mods: typing.Generator[interfaces.context.ModuleInterface, None, None], + mods: typing.Generator[interfaces.objects.ObjectInterface, None, None], session_layers: typing.Generator[str, None, None]): """Generates a list of PE file version info for processes, dlls, and modules.