mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 09:47:38 +02:00
Fixes for black
This commit is contained in:
@@ -151,12 +151,12 @@ class PsList(interfaces.plugins.PluginInterface, timeliner.TimeLinerInterface):
|
||||
"""
|
||||
|
||||
return lambda x: not (
|
||||
x.is_valid() and
|
||||
x.ActiveThreads > 0 and
|
||||
x.UniqueProcessId != 4 and
|
||||
x.InheritedFromUniqueProcessId != 4 and
|
||||
x.ExitTime.QuadPart == 0 and
|
||||
x.get_handle_count() != renderers.UnreadableValue()
|
||||
x.is_valid()
|
||||
and x.ActiveThreads > 0
|
||||
and x.UniqueProcessId != 4
|
||||
and x.InheritedFromUniqueProcessId != 4
|
||||
and x.ExitTime.QuadPart == 0
|
||||
and x.get_handle_count() != renderers.UnreadableValue()
|
||||
)
|
||||
|
||||
@classmethod
|
||||
|
||||
Reference in New Issue
Block a user