Skip to content

Commit a47758e

Browse files
mgxdeffigies
authored andcommitted
fix: append as string
1 parent 207a25a commit a47758e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fmriprep/workflows/bold/fit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def init_bold_fit_wf(
319319
# If sbref files are available, add them to the list of sources
320320
boldref_source_files = [bold_file]
321321
if sbref_files:
322-
boldref_source_files += sbref_files[0]
322+
boldref_source_files.append(sbref_files[0])
323323

324324
if nb.load(sbref_files[0]).ndim > 3:
325325
raw_sbref_wf = init_raw_boldref_wf(

0 commit comments

Comments
 (0)