Skip to content

Commit ccb4b16

Browse files
author
David Ellis
committed
FIX: Changes nipype.Function to Function.
1 parent 7050d57 commit ccb4b16

File tree

1 file changed

+2
-2
lines changed
  • nipype/workflows/smri/freesurfer

1 file changed

+2
-2
lines changed

nipype/workflows/smri/freesurfer/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ def create_recoding_wf(in_file, out_file=None):
582582
convert_labelmap.inputs.out_file = 'labelmap.nii'
583583
wf.connect([(inputspec, convert_labelmap, [('labelmap', 'in_file')])])
584584

585-
recode = pe.Node(nipype.Function(['in_file',
585+
recode = pe.Node(Function(['in_file',
586586
'out_file',
587587
'recode_file'],
588588
['out_file'],
@@ -596,7 +596,7 @@ def create_recoding_wf(in_file, out_file=None):
596596
wf.connect([(convert_labelmap, recode, [('out_file', 'in_file')]),
597597
(inputspec, recode, [('recode_file', 'recode_file')])])
598598

599-
center_labelmap = pe.Node(nipype.Function(['in_file'], ['out_file'],
599+
center_labelmap = pe.Node(Function(['in_file'], ['out_file'],
600600
center_volume),
601601
name="CenterLabelMap")
602602

0 commit comments

Comments
 (0)