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:
Ian Cordasco 2013-01-04 11:23:47 -05:00
parent 3bd8a21f62
commit 9cd5dbc96f
2 changed files with 10 additions and 5 deletions

View file

@ -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)