Skip to content

Commit aa8d0dc

Browse files
committed
FIX: PEP8 - E115 expected an indented block (comment)
1 parent 16a5d14 commit aa8d0dc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

nipype/interfaces/slicer/generate_classes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ def generate_class(module, launcher, strip_module_name_prefix=True, redirect_x =
317317

318318

319319
def grab_xml(module, launcher, mipav_hacks=False):
320-
# cmd = CommandLine(command = "Slicer3", args="--launch %s --xml"%module)
321-
# ret = cmd.run()
320+
# cmd = CommandLine(command = "Slicer3", args="--launch %s --xml"%module)
321+
# ret = cmd.run()
322322
command_list = launcher[:] # force copy to preserve original
323323
command_list.extend([module, "--xml"])
324324
final_command = " ".join(command_list)

nipype/interfaces/spm/preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1558,7 +1558,7 @@ def _list_outputs(self):
15581558
os.path.join(pth, "%s_seg8.mat" % base))
15591559

15601560
for i, tis in enumerate(['gm', 'wm', 'csf']):
1561-
# native space
1561+
# native space
15621562

15631563
if getattr(self.inputs, '%s_native' % tis):
15641564
outputs['native_class_images'][i].append(

nipype/utils/onetime.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ def __get__(self, obj, type=None):
5050

5151

5252
def setattr_on_read(func):
53-
# XXX - beetter names for this?
54-
# - cor_property (copy on read property)
55-
# - sor_property (set on read property)
56-
# - prop2attr_on_read
57-
#... ?
53+
# XXX - beetter names for this?
54+
# - cor_property (copy on read property)
55+
# - sor_property (set on read property)
56+
# - prop2attr_on_read
57+
#... ?
5858

5959
"""Decorator to create OneTimeProperty attributes.
6060

0 commit comments

Comments
 (0)