Disable catching-non-exception in pylint

The release of astroid 2.4.0 introduced a regression that makes pylint
raise a catching-non-exception errors on deprecated exception classes
marked for removal in Ussuri. Instead of removing these classes, we
should honor the deprecation cycle and instead ignore these pylint
errors.

Change-Id: Ife941047856588bb791ae05c34cd89b3c0ec0a3f
This commit is contained in:
Carlos Goncalves 2020-04-27 18:34:35 +02:00
parent 872dbdda95
commit 7fa2f933a2
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ disable=
import-error,
not-callable,
no-member,
catching-non-exception,
# "W" Warnings for stylistic problems or minor programming issues
abstract-method,
anomalous-backslash-in-string,