From 1a80097aeb00d13c878bc9563e880287602c5833 Mon Sep 17 00:00:00 2001 From: stv Date: Sun, 15 Feb 2015 16:33:26 -0800 Subject: [PATCH] Fix PEP8: E112 expected an indented block --- pavelib/paver_tests/test_paver_quality.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pavelib/paver_tests/test_paver_quality.py b/pavelib/paver_tests/test_paver_quality.py index 4c9e0d2ec4..fb8d3c7bed 100644 --- a/pavelib/paver_tests/test_paver_quality.py +++ b/pavelib/paver_tests/test_paver_quality.py @@ -31,9 +31,11 @@ class TestPaverQualityViolations(unittest.TestCase): @file_data('pylint_test_list.json') def test_pylint_parser_count_violations(self, value): - # Tests: - # * Different types of violations - # * One violation covering multiple lines + """ + Tests: + - Different types of violations + - One violation covering multiple lines + """ with open(self.f.name, 'w') as f: f.write(value) num = pavelib.quality._count_pylint_violations(f.name)