From dc09421dd7ea381ba9cbb516d3d0e24b20b3be39 Mon Sep 17 00:00:00 2001 From: Karim Nakad Date: Wed, 17 Jul 2019 13:49:43 -0700 Subject: [PATCH] change: modify TODO on disabled Pylint check The check recommendations are only valid for packages that exclusively support Python 3. The changes cannot be made in Python 2. The TODO was updated to clarify this. --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 5e319a7564..751004a844 100644 --- a/.pylintrc +++ b/.pylintrc @@ -86,7 +86,7 @@ disable= import-error, # Since we run Pylint before any of our builds in tox, this will always fail protected-access, # TODO: Fix access abstract-method, # TODO: Fix abstract methods - useless-object-inheritance, # TODO: Remove unnecessary imports + useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported. cyclic-import, # TODO: Resolve cyclic imports no-self-use, # TODO: Convert methods to functions where appropriate consider-using-ternary, # TODO: Consider ternary expressions