mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-10 23:04:18 +00:00
Fixes #40
I missed one of the lines changed where pep8style was required for skip_file.
This commit is contained in:
parent
9e6f5325d6
commit
7d2b8e6b07
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ def _get_files(repo, **kwargs):
|
||||||
seen.add(file_)
|
seen.add(file_)
|
||||||
if not file_.endswith('.py'):
|
if not file_.endswith('.py'):
|
||||||
continue
|
continue
|
||||||
if skip_file(file_, pep8style):
|
if skip_file(file_):
|
||||||
continue
|
continue
|
||||||
yield file_
|
yield file_
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue