Skip to content

Commit 8103357

Browse files
committed
Added fix to inputs check of workflows to allow ...
... dynamic input traits
1 parent 4d3e368 commit 8103357

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

nipype/pipeline/engine.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,8 @@ def _check_outputs(self, parameter):
190190
return hasattr(self.outputs, parameter)
191191

192192
def _check_inputs(self, parameter):
193+
if isinstance(self.inputs, DynamicTraitedSpec):
194+
return True
193195
return hasattr(self.inputs, parameter)
194196

195197
def _verify_name(self, name):

0 commit comments

Comments
 (0)