mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-05 04:36:52 +00:00
Rely on flakey's new ability to skip stdin errors
Resolves our half of tickets #53, and #53 I believe.
This commit is contained in:
parent
3bd8a21f62
commit
9cd5dbc96f
2 changed files with 10 additions and 5 deletions
|
|
@ -92,8 +92,8 @@ def check_file(path, ignore=(), complexity=-1):
|
|||
|
||||
|
||||
def check_code(code, ignore=(), complexity=-1):
|
||||
warning = flakey.check(code, 'stdin')
|
||||
warnings = flakey.print_messages(warning, ignore=ignore)
|
||||
warning = flakey.check(code, '<stdin>')
|
||||
warnings = flakey.print_messages(warning, ignore=ignore, code=code)
|
||||
warnings += pep8style.input_file(None, lines=code.split('\n'))
|
||||
if complexity > -1:
|
||||
warnings += mccabe.get_code_complexity(code, complexity)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue