mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-02 03:46:53 +00:00
Update to pyflakes 2.0.0
- Add new pyflakes codes - Bump the required versions - Fixes https://gitlab.com/pycqa/flake8/issues/422
This commit is contained in:
parent
33e7eae53a
commit
527af5c214
4 changed files with 10 additions and 2 deletions
|
|
@ -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',
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue