Skip to content

Commit 91f3727

Browse files
tsaloeffigies
authored andcommitted
Update niworkflows/interfaces/registration.py
Co-Authored-By: Chris Markiewicz <[email protected]>
1 parent cd2e30b commit 91f3727

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

niworkflows/interfaces/registration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
BaseInterfaceInputSpec,
1717
File,
1818
SimpleInterface,
19-
InputMultiPath,
19+
InputMultiObject,
2020
)
2121
from nipype.interfaces.mixins import reporting
2222
from nipype.interfaces import freesurfer as fs
@@ -399,7 +399,7 @@ def _post_run_hook(self, runtime):
399399

400400

401401
class _EstimateReferenceImageInputSpec(BaseInterfaceInputSpec):
402-
in_file = InputMultiPath(
402+
in_file = InputMultiObject(
403403
File(exists=True),
404404
mandatory=True,
405405
desc=(
@@ -409,7 +409,7 @@ class _EstimateReferenceImageInputSpec(BaseInterfaceInputSpec):
409409
"from the same run."
410410
),
411411
)
412-
sbref_file = InputMultiPath(
412+
sbref_file = InputMultiObject(
413413
File(exists=True),
414414
desc=(
415415
"Single band reference image. "

0 commit comments

Comments
 (0)