We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32c8dc5 commit 1e3e9e2Copy full SHA for 1e3e9e2
volatility3/framework/plugins/windows/threads.py
@@ -18,9 +18,9 @@ class Threads(thrdscan.ThrdScan):
18
_required_framework_version = (2, 4, 0)
19
_version = (1, 0, 0)
20
21
- def __init__(self):
+ def __init__(self, *args, **kwargs):
22
self.implementation = self.list_process_threads
23
- super().__init__()
+ super().__init__(*args, **kwargs)
24
25
@classmethod
26
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:
0 commit comments