Skip to content

Commit 17fae3c

Browse files
committed
fix(interface): do not flatten input to SubjectSummary interface
1 parent 695dd03 commit 17fae3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fmriprep/interfaces/reports.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ class SubjectSummaryInputSpec(BaseInterfaceInputSpec):
7979
bold = InputMultiObject(traits.Either(
8080
File(exists=True), traits.List(File(exists=True))),
8181
desc='BOLD functional series')
82-
std_spaces = InputMultiObject(Str, desc='list of standard spaces')
83-
nstd_spaces = InputMultiObject(Str, desc='list of non-standard spaces')
82+
std_spaces = traits.List(Str, desc='list of standard spaces')
83+
nstd_spaces = traits.List(Str, desc='list of non-standard spaces')
8484

8585

8686
class SubjectSummaryOutputSpec(SummaryOutputSpec):

0 commit comments

Comments
 (0)