Skip to content

Commit

Permalink
Merge pull request #1234 from dadokkio/patch-1
Browse files Browse the repository at this point in the history
add args and kwargs to threads.py init
  • Loading branch information
ikelos authored Aug 6, 2024
2 parents 32c8dc5 + 1e3e9e2 commit 6b739f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions volatility3/framework/plugins/windows/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ class Threads(thrdscan.ThrdScan):
_required_framework_version = (2, 4, 0)
_version = (1, 0, 0)

def __init__(self):
def __init__(self, *args, **kwargs):
self.implementation = self.list_process_threads
super().__init__()
super().__init__(*args, **kwargs)

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

0 comments on commit 6b739f6

Please sign in to comment.