Skip to content

Commit 1512cc3

Browse files
committed
re-introduce __init__
1 parent 2575d4d commit 1512cc3

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nipype/interfaces/base/core.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ def help(cls, returnhelp=False):
100100
print(allhelp)
101101
return None # R1710
102102

103+
def __init__(self):
104+
"""Subclasses must implement __init__"""
105+
raise NotImplementedError
106+
103107
def run(self):
104108
"""Execute the command."""
105109
raise NotImplementedError

0 commit comments

Comments
 (0)