From 1c8f9edaf07d8784e7e5e94ed90f9a68a4b78e96 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Tue, 25 Feb 2025 10:15:23 +0000 Subject: [PATCH] Linux: Fix typing is lsof Fixes #1443 --- volatility3/framework/plugins/linux/lsof.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/linux/lsof.py b/volatility3/framework/plugins/linux/lsof.py index daa8e5a3d..044e9238f 100644 --- a/volatility3/framework/plugins/linux/lsof.py +++ b/volatility3/framework/plugins/linux/lsof.py @@ -54,7 +54,7 @@ class FDInternal: """ task: interfaces.objects.ObjectInterface - fd_fields: Tuple[int, int, str] + fd_fields: Tuple[int, interfaces.objects.ObjectInterface, str] def to_user(self) -> FDUser: """Augment the FD information to be presented to the user