We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2178351 commit 3f9ed3aCopy full SHA for 3f9ed3a
1 file changed
pep8.py
@@ -2158,14 +2158,14 @@ def _main():
2158
except AttributeError:
2159
pass # not supported on Windows
2160
2161
- pep8style = StyleGuide(parse_argv=True)
2162
- options = pep8style.options
+ style_guide = StyleGuide(parse_argv=True)
+ options = style_guide.options
2163
2164
if options.doctest or options.testsuite:
2165
from testsuite.support import run_tests
2166
- report = run_tests(pep8style)
+ report = run_tests(style_guide)
2167
else:
2168
- report = pep8style.check_files()
+ report = style_guide.check_files()
2169
2170
if options.statistics:
2171
report.print_statistics()
0 commit comments