We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8705091 commit 960a10cCopy full SHA for 960a10c
pep8.py
@@ -2123,17 +2123,22 @@ def _main():
2123
2124
pep8style = StyleGuide(parse_argv=True)
2125
options = pep8style.options
2126
+
2127
if options.doctest or options.testsuite:
2128
from testsuite.support import run_tests
2129
report = run_tests(pep8style)
2130
else:
2131
report = pep8style.check_files()
2132
2133
if options.statistics:
2134
report.print_statistics()
2135
2136
if options.benchmark:
2137
report.print_benchmark()
2138
2139
if options.testsuite and not options.quiet:
2140
report.print_results()
2141
2142
if report.total_errors:
2143
if options.count:
2144
sys.stderr.write(str(report.total_errors) + '\n')
0 commit comments