Skip to content

Commit 1e3e9e2

Browse files
authored
add args and kwargs to threads.py init
Without args and kwargs there were an issue with timeliner plugin that tried to pass additional parameters like progress_callback raising TypeError
1 parent 32c8dc5 commit 1e3e9e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/plugins/windows/threads.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ class Threads(thrdscan.ThrdScan):
1818
_required_framework_version = (2, 4, 0)
1919
_version = (1, 0, 0)
2020

21-
def __init__(self):
21+
def __init__(self, *args, **kwargs):
2222
self.implementation = self.list_process_threads
23-
super().__init__()
23+
super().__init__(*args, **kwargs)
2424

2525
@classmethod
2626
def get_requirements(cls) -> List[interfaces.configuration.RequirementInterface]:

0 commit comments

Comments
 (0)