Working out the useless else disables (#526 from dseomn copybara)

Project import generated by Copybara.
This commit is contained in:
Gregory P. Smith 2020-02-20 16:13:54 -08:00 committed by GitHub
commit 056962e73a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,6 +93,10 @@ disable=apply-builtin,
next-method-called,
next-method-defined,
no-absolute-import,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-member,
no-self-use,
nonzero-method,
@ -130,6 +134,7 @@ disable=apply-builtin,
unichr-builtin,
unicode-builtin,
unpacking-in-except,
useless-else-on-loop,
useless-suppression,
using-cmp-argument,
xrange-builtin,