File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -380,10 +380,11 @@ def _run_interface(self, runtime):
380380class _TemplateDimensionsInputSpec (BaseInterfaceInputSpec ):
381381 anat_type = traits .Enum ("T1w" , "T2w" , usedefault = True , desc = "Anatomical image type" )
382382 anat_list = InputMultiObject (
383- File (exists = True ), xor = "t1w_list" , desc = "input anatomical images"
383+ File (exists = True ), xor = [ "t1w_list" ] , desc = "input anatomical images"
384384 )
385385 t1w_list = InputMultiObject (
386- xor = "anat_list" ,
386+ File (exists = True ),
387+ xor = ["anat_list" ],
387388 deprecated = "1.14.0" ,
388389 new_name = "anat_list" ,
389390 )
@@ -393,7 +394,7 @@ class _TemplateDimensionsInputSpec(BaseInterfaceInputSpec):
393394
394395
395396class _TemplateDimensionsOutputSpec (TraitedSpec ):
396- t1w_valid_list = OutputMultiObject (exists = True , deprecated = "1.14.0" , desc = "valid T1w images" )
397+ t1w_valid_list = OutputMultiObject (exists = True , desc = "valid T1w images" )
397398 anat_valid_list = OutputMultiObject (exists = True , desc = "valid anatomical images" )
398399 target_zooms = traits .Tuple (
399400 traits .Float , traits .Float , traits .Float , desc = "Target zoom information"
You can’t perform that action at this time.
0 commit comments