Skip to content

Commit 0a6e986

Browse files
authored
Merge pull request nipreps#473 from nipreps/oesteban-patch-1
FIX: replace mutable ``list`` with ``tuple`` in ANTs' workflow
2 parents 566e454 + 428eb52 commit 0a6e986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

niworkflows/anat/ants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ def init_atropos_wf(name='atropos_wf',
390390
omp_nthreads=None,
391391
mem_gb=3.0,
392392
padding=10,
393-
in_segmentation_model=list(ATROPOS_MODELS['T1w'].values())):
393+
in_segmentation_model=tuple(ATROPOS_MODELS['T1w'].values())):
394394
"""
395395
Create an ANTs' ATROPOS workflow for brain tissue segmentation.
396396

0 commit comments

Comments
 (0)