Skip to content

Commit a640b3b

Browse files
committed
sty: white spaces
1 parent 639b968 commit a640b3b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

nipype/interfaces/ants/segmentation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ class LaplacianThicknessInputSpec(ANTSCommandInputSpec):
174174
position=5)
175175
dT = traits.Float(argstr='dT=%d', desc='', position=6)
176176
sulcus_prior = traits.Bool(argstr='use-sulcus-prior', desc='', position=7)
177-
opt_tolerance = traits.Float(argstr='optional-laplacian-tolerance=%d',
177+
opt_tolerance = traits.Float(argstr='optional-laplacian-tolerance=%d',
178178
desc='', position=8)
179179

180180

nipype/pipeline/tests/test_engine.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -619,19 +619,19 @@ def func1(in1):
619619
iterfield=['in1'],
620620
name='n1')
621621
n1.inputs.in1 = [1,2,3]
622-
623-
622+
623+
624624
w1 = Workflow(name='test')
625625
w1.base_dir = wd
626626
w1.add_nodes([n1])
627627
# set local check
628628
w1.config['execution'] = {'stop_on_first_crash': 'true',
629629
'local_hash_check': 'true',
630630
'crashdump_dir': wd}
631-
631+
632632
# test output of num_subnodes method when serial is default (False)
633633
yield assert_equal, n1.num_subnodes(), len(n1.inputs.in1)
634-
634+
635635
# test running the workflow on default conditions
636636
error_raised = False
637637
try:
@@ -640,11 +640,11 @@ def func1(in1):
640640
pe.logger.info('Exception: %s' % str(e))
641641
error_raised = True
642642
yield assert_false, error_raised
643-
643+
644644
# test output of num_subnodes method when serial is True
645645
n1._serial=True
646646
yield assert_equal, n1.num_subnodes(), 1
647-
647+
648648
# test running the workflow on serial conditions
649649
error_raised = False
650650
try:
@@ -653,6 +653,6 @@ def func1(in1):
653653
pe.logger.info('Exception: %s' % str(e))
654654
error_raised = True
655655
yield assert_false, error_raised
656-
656+
657657
os.chdir(cwd)
658658
rmtree(wd)

0 commit comments

Comments
 (0)