We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a71f4 commit 8091912Copy full SHA for 8091912
nipype/interfaces/io.py
@@ -129,12 +129,12 @@ class DataSinkInputSpec(DynamicTraitedSpec, BaseInterfaceInputSpec):
129
desc='remove dest directory when copying dirs')
130
131
def __setattr__(self, key, value):
132
+ super(DataSinkInputSpec, self).__setattr__(key, value)
133
if key not in self.copyable_trait_names():
134
self._outputs[key] = value
135
else:
136
if key in self._outputs:
137
- super(DataSinkInputSpec, self).__setattr__(key, value)
138
139
class DataSink(IOBase):
140
""" Generic datasink module to store structured outputs
0 commit comments