Skip to content

Commit ef288d8

Browse files
committed
first pass, fix errors
1 parent e3fd6f8 commit ef288d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

smriprep/workflows/surfaces.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def init_surface_recon_wf(*, omp_nthreads, hires, fs_reuse_base, name="surface_r
256256
autorecon_resume_wf = init_autorecon_resume_wf(omp_nthreads=omp_nthreads)
257257

258258
# fmt:off
259-
workflow.connect(
259+
workflow.connect([
260260
# Configuration
261261
(inputnode, recon_config, [('t1w', 't1w_list'),
262262
('t2w', 't2w_list'),
@@ -296,10 +296,10 @@ def init_surface_recon_wf(*, omp_nthreads, hires, fs_reuse_base, name="surface_r
296296
# Output
297297
(autorecon_resume_wf, outputnode, [('outputnode.subjects_dir', 'subjects_dir'),
298298
('outputnode.subject_id', 'subject_id')]),
299-
)
299+
])
300300
# fmt:on
301301
else:
302-
fs_base_inputs = pe.Node(nio.FreeSurferSource())
302+
fs_base_inputs = pe.Node(nio.FreeSurferSource(), name='fs_base_inputs')
303303
# fmt:off
304304
workflow.connect([
305305
(inputnode, fs_base_inputs, [('subjects_dir', 'subjects_dir'),

0 commit comments

Comments
 (0)