summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIan Stapleton Cordasco <graffatcolmingov@gmail.com>2018-06-29 01:52:34 +0000
committerIan Stapleton Cordasco <graffatcolmingov@gmail.com>2018-06-29 01:52:34 +0000
commiteb6228b660a5194f201dcf8767f804f697756b79 (patch)
treec8c3a5403c1ad4a8ae1b901615a8b5b045f8d4d5 /src
parente60e8027c9e9f16a53b71e35685a8b3213e29ed7 (diff)
parent527af5c214ef0eccfde3dd58d7ea15e09c483bd3 (diff)
downloadflake8-eb6228b660a5194f201dcf8767f804f697756b79.tar.gz
Merge branch 'pyflakes_new_codes' into 'master'
Update to pyflakes 2.0.0 Closes #422 See merge request pycqa/flake8!239
Diffstat (limited to 'src')
-rw-r--r--src/flake8/plugins/pyflakes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/flake8/plugins/pyflakes.py b/src/flake8/plugins/pyflakes.py
index bc19291..9ef9e93 100644
--- a/src/flake8/plugins/pyflakes.py
+++ b/src/flake8/plugins/pyflakes.py
@@ -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',
}