Merge branch 'pyflakes_new_codes' into 'master'

Update to pyflakes 2.0.0

Closes #422

See merge request pycqa/flake8!239
This commit is contained in:
Ian Stapleton Cordasco 2018-06-29 01:52:34 +00:00
commit eb6228b660
4 changed files with 10 additions and 2 deletions

View file

@ -38,6 +38,7 @@ FLAKE8_PYFLAKES_CODES = {
'ReturnOutsideFunction': 'F706',
'DefaultExceptNotLast': 'F707',
'DoctestSyntaxError': 'F721',
'ForwardAnnotationSyntaxError': 'F722',
'RedefinedWhileUnused': 'F811',
'RedefinedInListComp': 'F812',
'UndefinedName': 'F821',
@ -45,6 +46,7 @@ FLAKE8_PYFLAKES_CODES = {
'UndefinedLocal': 'F823',
'DuplicateArgument': 'F831',
'UnusedVariable': 'F841',
'RaiseNotImplemented': 'F901',
}