mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-01 11:26:54 +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_)
|
||||
if not file_.endswith('.py'):
|
||||
continue
|
||||
if skip_file(file_, pep8style):
|
||||
if skip_file(file_):
|
||||
continue
|
||||
yield file_
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue