summaryrefslogtreecommitdiffstats
path: root/pyfirstaidkit/plugins.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyfirstaidkit/plugins.py')
-rw-r--r--pyfirstaidkit/plugins.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py
index 6e9a4ce..05464fe 100644
--- a/pyfirstaidkit/plugins.py
+++ b/pyfirstaidkit/plugins.py
@@ -298,8 +298,8 @@ Just fill the issue_tests list with classes describing the tests and let it run.
issue_tests = [] #List of Issue classes to check
- def __init__(self, flow, reporting, dependencies, path = None):
- Plugin.__init__(self, flow, reporting, dependencies, path)
+ def __init__(self, *args, **kwargs):
+ Plugin.__init__(self, *args, **kwargs)
self.tests = []
def prepare(self):