Skip to content

Commit 6b739f6

Browse files
authored
Merge pull request #1234 from dadokkio/patch-1
add args and kwargs to threads.py init
2 parents 32c8dc5 + 1e3e9e2 commit 6b739f6

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)