From d148d8f9d8fb28f0027b6f276f6e26fdfd229068 Mon Sep 17 00:00:00 2001 From: Dave Lassalle Date: Tue, 11 Mar 2025 09:31:54 -0500 Subject: [PATCH] #1446 - black fixes --- volatility3/framework/plugins/windows/pstree.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/windows/pstree.py b/volatility3/framework/plugins/windows/pstree.py index 39db56243..3a5e1c878 100644 --- a/volatility3/framework/plugins/windows/pstree.py +++ b/volatility3/framework/plugins/windows/pstree.py @@ -20,7 +20,9 @@ class PsTree(interfaces.plugins.PluginInterface): def __init__(self, *args, **kwargs) -> None: super().__init__(*args, **kwargs) - self._processes: Dict[objects.Pointer, Tuple[interfaces.objects.ObjectInterface, int]] = {} + self._processes: Dict[ + objects.Pointer, Tuple[interfaces.objects.ObjectInterface, int] + ] = {} self._levels: Dict[objects.Pointer, int] = {} self._children: Dict[objects.Pointer, Set[int]] = {} self._ancestors: Set[objects.Pointer] = set([])