From 8104ee5fcb6393f6fdfc663a44d164dada15f77d Mon Sep 17 00:00:00 2001 From: Donghyun Kim Date: Mon, 28 Mar 2022 03:43:36 +0900 Subject: [PATCH] Prettier of TreeGrid column --- volatility3/framework/plugins/windows/devicetree.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/volatility3/framework/plugins/windows/devicetree.py b/volatility3/framework/plugins/windows/devicetree.py index add654795..bd1a1ce36 100644 --- a/volatility3/framework/plugins/windows/devicetree.py +++ b/volatility3/framework/plugins/windows/devicetree.py @@ -140,5 +140,9 @@ class DeviceTree(interfaces.plugins.PluginInterface): def run(self) -> renderers.TreeGrid: return renderers.TreeGrid([ - ("Offset", format_hints.Hex), ("Type", str), ("DriverName", str), ("DeviceName", str), ("DeviceType", str), + ("Offset", format_hints.Hex), + ("Type", str), + ("DriverName", str), + ("DeviceName", str), + ("DeviceType", str), ], self._generator())