Skip to content

Commit 0e83dbc

Browse files
authored
FIX: Do not pass self to super.__init__
1 parent 03c3fc0 commit 0e83dbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nipype/interfaces/mixins/reporting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ReportCapableInterface(BaseInterface):
2929
_out_report = None
3030

3131
def __init__(self, generate_report=False, **kwargs):
32-
super(ReportCapableInterface, self).__init__(self, **kwargs)
32+
super(ReportCapableInterface, self).__init__(**kwargs)
3333
self.generate_report = generate_report
3434

3535
def _post_run_hook(self, runtime):

0 commit comments

Comments
 (0)