pylint: Upgrade to version 2.10.2.

This PR sets pylint to version 2.10.2 in all linter actions, and
fixes code in plugins so that this version new checks are either
satisfied or ignored if needed.
This commit is contained in:
Rafael Guterres Jeffman
2021-08-31 19:45:12 -03:00
parent 72d54d2f9e
commit 928540fa27
6 changed files with 10 additions and 7 deletions

View File

@@ -104,7 +104,7 @@ else:
try:
from collections.abc import Mapping # noqa
except ImportError:
from collections import Mapping # noqa
from collections import Mapping # pylint: disable=deprecated-class
if six.PY3:
unicode = str