@@ -467,15 +467,15 @@ def parse_enum(handler):
467
467
"TraitCompound" : (sc .Union , None ),
468
468
"Either" : (sc .Union , None ),
469
469
"Enum" : parse_enum ,
470
- "InputMultiPath_TraitCompound" : (sc . List , None ),
471
- "InputMultiPath" : (sc . List , None ),
472
- "InputMultiObject" : (sc . List , None ),
473
- "OutputMultiObject" : (sc . List , {"write" : True }),
474
- "MultiPath" : (sc . List , None ),
470
+ "InputMultiPath_TraitCompound" : (list , None ),
471
+ "InputMultiPath" : (list , None ),
472
+ "InputMultiObject" : (list , None ),
473
+ "OutputMultiObject" : (list , {"write" : True }),
474
+ "MultiPath" : (list , None ),
475
475
"Dict_Str_Str" : (dict , None ),
476
- "OutputMultiPath_TraitCompound" : (sc . List , {"write" : True }),
477
- "OutputMultiPath" : (sc . List , {"write" : True }),
478
- "OutputList" : (sc . List , {"write" : True }),
476
+ "OutputMultiPath_TraitCompound" : (list , {"write" : True }),
477
+ "OutputMultiPath" : (list , {"write" : True }),
478
+ "OutputList" : (list , {"write" : True }),
479
479
"ImageFileSPM" : (sc .File , {"allowed_extensions" : [".nii" , ".img" , ".hdr" , ".mnc" ]}),
480
480
}
481
481
0 commit comments