Merge pull request #1234 from dadokkio/patch-1

add args and kwargs to threads.py init
This commit is contained in:
ikelos
2024-08-06 22:20:18 +01:00
committed by GitHub
@@ -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]: