Skip to content

Commit 01eb5c4

Browse files
committed
PEP8
1 parent bc5803c commit 01eb5c4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nipype/interfaces/io.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1478,7 +1478,7 @@ class FSSourceInputSpec(BaseInterfaceInputSpec):
14781478
subjects_dir = Directory(mandatory=True,
14791479
desc='Freesurfer subjects directory.')
14801480
subject_id = Str(mandatory=True,
1481-
desc='Subject name for whom to retrieve data')
1481+
desc='Subject name for whom to retrieve data')
14821482
hemi = traits.Enum('both', 'lh', 'rh', usedefault=True,
14831483
desc='Selects hemisphere specific outputs')
14841484

@@ -1487,8 +1487,8 @@ class FSSourceOutputSpec(TraitedSpec):
14871487
T1 = File(
14881488
exists=True, desc='Intensity normalized whole-head volume', loc='mri')
14891489
aseg = File(
1490-
exists=True, desc='Volumetric map of regions from automatic segmentation',
1491-
loc='mri')
1490+
exists=True, loc='mri',
1491+
desc='Volumetric map of regions from automatic segmentation')
14921492
brain = File(
14931493
exists=True, desc='Intensity normalized brain-only volume', loc='mri')
14941494
brainmask = File(
@@ -1507,8 +1507,8 @@ class FSSourceOutputSpec(TraitedSpec):
15071507
loc='mri', altkey='*ribbon')
15081508
wm = File(exists=True, desc='Segmented white-matter volume', loc='mri')
15091509
wmparc = File(
1510-
exists=True, desc='Aparc parcellation projected into subcortical white matter',
1511-
loc='mri')
1510+
exists=True, loc='surf',
1511+
desc='Aparc parcellation projected into subcortical white matter')
15121512
curv = OutputMultiPath(File(exists=True), desc='Maps of surface curvature',
15131513
loc='surf')
15141514
avg_curv = OutputMultiPath(

0 commit comments

Comments
 (0)