Skip to content

Commit 960a10c

Browse files
committed
Added minor visual whitespace improvement
1 parent 8705091 commit 960a10c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pep8.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2123,17 +2123,22 @@ def _main():
21232123

21242124
pep8style = StyleGuide(parse_argv=True)
21252125
options = pep8style.options
2126+
21262127
if options.doctest or options.testsuite:
21272128
from testsuite.support import run_tests
21282129
report = run_tests(pep8style)
21292130
else:
21302131
report = pep8style.check_files()
2132+
21312133
if options.statistics:
21322134
report.print_statistics()
2135+
21332136
if options.benchmark:
21342137
report.print_benchmark()
2138+
21352139
if options.testsuite and not options.quiet:
21362140
report.print_results()
2141+
21372142
if report.total_errors:
21382143
if options.count:
21392144
sys.stderr.write(str(report.total_errors) + '\n')

0 commit comments

Comments
 (0)