Skip to content

Commit b0c95e0

Browse files
committed
remove unnecessary dependency; formatting
1 parent cca5eb2 commit b0c95e0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nipype/interfaces/afni/preprocess.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1836,10 +1836,10 @@ class ROIStatsInputSpec(CommandLineInputSpec):
18361836
'output as \'8 20 2\'',
18371837
argstr='-roisel %s')
18381838
debug = traits.Bool(
1839-
desc='print debug information',
1839+
desc='print debug information',
18401840
argstr='-debug')
18411841
quiet = traits.Bool(
1842-
desc='execute quietly',
1842+
desc='execute quietly',
18431843
argstr='-quiet')
18441844
nomeanout = traits.Bool(
18451845
desc='Do not include the (zero-inclusive) mean among computed stats',
@@ -1900,12 +1900,12 @@ class ROIStatsOutputSpec(TraitedSpec):
19001900
class ROIStats(AFNICommandBase):
19011901
"""Display statistics over masked regions
19021902
1903-
For complete details, see the `3dROIstats Documentation.
1903+
For complete details, see the `3dROIstats Documentation
19041904
<https://afni.nimh.nih.gov/pub/dist/doc/program_help/3dROIstats.html>`_
19051905
19061906
Examples
19071907
========
1908-
1908+
19091909
>>> from nipype.interfaces import afni
19101910
>>> roistats = afni.ROIStats()
19111911
>>> roistats.inputs.in_file = 'functional.nii'
@@ -1914,8 +1914,8 @@ class ROIStats(AFNICommandBase):
19141914
>>> roistats.cmdline
19151915
'3dROIstats -quiet -mask skeleton_mask.nii.gz functional.nii'
19161916
>>> res = roistats.run() # doctest: +SKIP
1917-
"""
19181917
1918+
"""
19191919
_cmd = '3dROIstats'
19201920
_terminal_output = 'allatonce'
19211921
input_spec = ROIStatsInputSpec

nipype/interfaces/afni/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1476,10 +1476,10 @@ class LocalstatInputSpec(AFNICommandInputSpec):
14761476
_stat_names = ['mean', 'stdev', 'var', 'cvar', 'median', 'MAD', 'min',
14771477
'max', 'absmax', 'num', 'sum', 'FWHM', 'FWHMbar', 'rank',
14781478
'frank', 'P2skew', 'ALL', 'mMP2s', 'mmMP2s']
1479-
stat = InputMultiObject(
1479+
stat = InputMultiPath(
14801480
traits.Either(
14811481
traits.Enum(_stat_names),
1482-
traits.Tuple(traits.Enum('perc'),
1482+
traits.Tuple(traits.Enum('perc'),
14831483
traits.Tuple(traits.Float, traits.Float, traits.Float))),
14841484
mandatory=True,
14851485
desc='statistics to compute. Possible names are :'

0 commit comments

Comments
 (0)