Skip to content

Commit 16a5d14

Browse files
committed
FIX: PEP8 - E114 indentation is not a multiple of four (comment)
1 parent d7f9412 commit 16a5d14

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

nipype/interfaces/base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -662,15 +662,15 @@ class Interface(object):
662662
input_spec = None # A traited input specification
663663
output_spec = None # A traited output specification
664664

665-
_can_resume = False # defines if the interface can reuse partial results
666-
# after interruption
665+
# defines if the interface can reuse partial results after interruption
666+
_can_resume = False
667667

668668
@property
669669
def can_resume(self):
670670
return self._can_resume
671671

672-
_always_run = False # should the interface be always run even if the
673-
# inputs were not changed?
672+
# should the interface be always run even if the inputs were not changed?
673+
_always_run = False
674674

675675
@property
676676
def always_run(self):

nipype/interfaces/fsl/preprocess.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -240,11 +240,11 @@ class FASTInputSpec(FSLCommandInputSpec):
240240
argstr='-N')
241241
use_priors = traits.Bool(desc='use priors throughout',
242242
argstr='-P') # must also set -a!,
243-
# mutually inclusive??
244-
# No, conditional
245-
# mandatory... need to
246-
# figure out how to
247-
# handle with traits.
243+
# mutually inclusive??
244+
# No, conditional
245+
# mandatory... need to
246+
# figure out how to
247+
# handle with traits.
248248
segment_iters = traits.Range(low=1, high=50,
249249
desc='number of segmentation-initialisation'
250250
' iterations',
@@ -1601,4 +1601,4 @@ def _gen_mesh_names(self, name, structures):
16011601
bvar = prefix + '-' + struct + '_first.bvars'
16021602
bvars.append(op.abspath(bvar))
16031603
return bvars
1604-
return None
1604+
return None

nipype/utils/spm_docs.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def _strip_header(doc):
4141
4242
"""
4343
hdr = 'NIPYPE'
44-
cruft = '\x1b' # There's some weird cruft at the end of the
45-
# docstring, almost looks like the hex for the
46-
# escape character 0x1b.
44+
# There's some weird cruft at the end of the docstring, almost looks like
45+
# the hex for the escape character 0x1b.
46+
cruft = '\x1b'
4747
try:
4848
index = doc.index(hdr)
4949
index += len(hdr)

0 commit comments

Comments
 (0)