Skip to content

Commit 3f9ed3a

Browse files
committed
Made 'pep8style' more generically 'style_guide'
1 parent 2178351 commit 3f9ed3a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pep8.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2158,14 +2158,14 @@ def _main():
21582158
except AttributeError:
21592159
pass # not supported on Windows
21602160

2161-
pep8style = StyleGuide(parse_argv=True)
2162-
options = pep8style.options
2161+
style_guide = StyleGuide(parse_argv=True)
2162+
options = style_guide.options
21632163

21642164
if options.doctest or options.testsuite:
21652165
from testsuite.support import run_tests
2166-
report = run_tests(pep8style)
2166+
report = run_tests(style_guide)
21672167
else:
2168-
report = pep8style.check_files()
2168+
report = style_guide.check_files()
21692169

21702170
if options.statistics:
21712171
report.print_statistics()

0 commit comments

Comments
 (0)