mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-07 21:44:18 +00:00
Use alternate warnings from flakey
Update the README to reflect this change.
This commit is contained in:
parent
8f5bb5dc0d
commit
9445a25f50
2 changed files with 21 additions and 12 deletions
|
|
@ -65,10 +65,16 @@ def main():
|
|||
raise SystemExit(warnings)
|
||||
|
||||
|
||||
def _set_alt(warning):
|
||||
for m in warning.messages:
|
||||
m.error_code, m.alt_error_code = m.alt_error_code, m.error_code
|
||||
|
||||
|
||||
def check_file(path, ignore=(), complexity=-1):
|
||||
if pep8style.excluded(path):
|
||||
return 0
|
||||
warning = flakey.checkPath(path)
|
||||
warning = flakey.check_path(path)
|
||||
_set_alt(warning)
|
||||
warnings = flakey.print_messages(warning, ignore=ignore)
|
||||
warnings += pep8style.input_file(path)
|
||||
if complexity > -1:
|
||||
|
|
@ -78,6 +84,7 @@ def check_file(path, ignore=(), complexity=-1):
|
|||
|
||||
def check_code(code, ignore=(), complexity=-1):
|
||||
warning = flakey.check(code, '<stdin>')
|
||||
_set_alt(warning)
|
||||
warnings = flakey.print_messages(warning, ignore=ignore, code=code)
|
||||
warnings += pep8style.input_file('-', lines=code.split('\n'))
|
||||
if complexity > -1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue