From 7342f1e27e864df4b7d710b69d993c643feaa978 Mon Sep 17 00:00:00 2001 From: Andrew Case Date: Fri, 7 Mar 2025 18:25:35 -0600 Subject: [PATCH] Apply suggestions from code review convert from static back to classmethod Co-authored-by: ikelos --- volatility3/framework/plugins/windows/threads.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/windows/threads.py b/volatility3/framework/plugins/windows/threads.py index e7150bbe4..77062e8c6 100644 --- a/volatility3/framework/plugins/windows/threads.py +++ b/volatility3/framework/plugins/windows/threads.py @@ -36,8 +36,9 @@ class Threads(thrdscan.ThrdScan): ), ] - @staticmethod + @classmethod def list_threads( + cls, context: interfaces.context.ContextInterface, kernel_module_name: str, proc: interfaces.objects.ObjectInterface,