Skip to content

Commit b92a531

Browse files
oestebaneffigies
andauthored
Apply suggestions from code review
Co-Authored-By: Chris Markiewicz <[email protected]>
1 parent d547366 commit b92a531

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

nipype/algorithms/confounds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ class CompCorInputSpec(BaseInterfaceInputSpec):
417417
low=0,
418418
xor=["merge_method"],
419419
requires=["mask_files"],
420-
desc=("Position of mask in ``mask_files`` to use - " "first is the default."),
420+
desc="Position of mask in ``mask_files`` to use - first is the default.",
421421
)
422422
mask_names = traits.List(
423423
traits.Str,

nipype/interfaces/afni/preprocess.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3135,7 +3135,7 @@ class TSmoothInputSpec(AFNICommandInputSpec):
31353135
)
31363136
lin = traits.Bool(
31373137
desc=r"3 point linear filter: :math:`0.15\,a + 0.70\,b + 0.15\,c`"
3138-
"[This is the default smoother]",
3138+
" [This is the default smoother]",
31393139
argstr="-lin",
31403140
)
31413141
med = traits.Bool(desc="3 point median filter: median(a,b,c)", argstr="-med")
@@ -3146,7 +3146,7 @@ class TSmoothInputSpec(AFNICommandInputSpec):
31463146
)
31473147
lin3 = traits.Int(
31483148
desc=r"3 point linear filter: :math:`0.5\,(1-m)\,a + m\,b + 0.5\,(1-m)\,c`"
3149-
"Here, 'm' is a number strictly between 0 and 1.",
3149+
" Here, 'm' is a number strictly between 0 and 1.",
31503150
argstr="-3lin %d",
31513151
)
31523152
hamming = traits.Int(

nipype/interfaces/afni/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ class BrickStatInputSpec(CommandLineInputSpec):
267267
traits.Float,
268268
traits.Float,
269269
desc="p0 ps p1 write the percentile values starting "
270-
"at p0\\% and ending at p1\\% at a step of ps%. "
270+
"at p0% and ending at p1% at a step of ps%. "
271271
"only one sub-brick is accepted.",
272272
argstr="-percentile %.3f %.3f %.3f",
273273
)

0 commit comments

Comments
 (0)