diff options
author | Ian Lee <IanLee1521@gmail.com> | 2015-02-07 16:43:55 -0800 |
---|---|---|
committer | Ian Lee <IanLee1521@gmail.com> | 2015-02-07 16:43:55 -0800 |
commit | d8786cfb5141d1f5cc6afbf26e15ccc773e8934b (patch) | |
tree | f15ec4964ab7544cb2f855fca9cc5c1c8740f682 /docs | |
parent | 6086f61c90c38b5ceb0bf1f473a382fb36f664b1 (diff) | |
parent | 69a3a3da9ed280831787bcecd6ee47caa2969571 (diff) | |
download | pep8-d8786cfb5141d1f5cc6afbf26e15ccc773e8934b.tar.gz |
Merge pull request #313 from hongqn/e721-noqa
allow use # noqa to disable E721 warning
Diffstat (limited to 'docs')
-rw-r--r-- | docs/intro.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro.rst b/docs/intro.rst index 13a9553..006187b 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -361,7 +361,7 @@ This is the current list of error and warning codes: +----------+----------------------------------------------------------------------+ | E714 | test for object identity should be 'is not' | +----------+----------------------------------------------------------------------+ -| E721 | do not compare types, use 'isinstance()' | +| E721 (^) | do not compare types, use 'isinstance()' | +----------+----------------------------------------------------------------------+ | E731 | do not assign a lambda expression, use a def | +----------+----------------------------------------------------------------------+ |