Skip to content

Commit 13cc31e

Browse files
committed
style fixes to make lint aka flake8 happy
1 parent ed8c577 commit 13cc31e

5 files changed

Lines changed: 5 additions & 1 deletion

File tree

tests/test_checkchmjob.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,6 @@ def test_check_chm_job_all_tasks_complete_with_submit(self):
251251
finally:
252252
shutil.rmtree(temp_dir)
253253

254+
254255
if __name__ == '__main__':
255256
unittest.main()

tests/test_chmjobcreator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def test_create_job_three_images_five_tiles_per_job(self):
384384
7)
385385

386386
o_img_list = []
387-
for x in range(1,8):
387+
for x in range(1, 8):
388388
o_img = config.get(str(x),
389389
CHMJobCreator.CONFIG_OUTPUT_IMAGE)
390390
o_img_list.append(o_img)

tests/test_clusterfactory.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ def test_get_cluster_by_name(self):
4646
c = cfac.get_cluster_by_name(CometCluster.CLUSTER)
4747
self.assertEqual(c.get_cluster(), CometCluster.CLUSTER)
4848

49+
4950
if __name__ == '__main__':
5051
unittest.main()

tests/test_taskstats.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ def test_getter_and_setters(self):
4646
self.assertEqual(ts.get_max_memory_in_kb(), 300)
4747
self.assertEqual(ts.get_total_memory_in_kb(), 400)
4848

49+
4950
if __name__ == '__main__':
5051
unittest.main()

tests/test_tasksummaryfactory.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -493,5 +493,6 @@ def test_get_task_summary(self):
493493
'\nMerge tasks: 0% complete (0 of '
494494
'1 completed)\n')
495495

496+
496497
if __name__ == '__main__':
497498
unittest.main()

0 commit comments

Comments
 (0)