Skip to content

Commit 91c5529

Browse files
authored
change: modify TODO on disabled Pylint check (#943)
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.
1 parent d039e37 commit 91c5529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.pylintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ disable=
8888
import-error, # Since we run Pylint before any of our builds in tox, this will always fail
8989
protected-access, # TODO: Fix access
9090
abstract-method, # TODO: Fix abstract methods
91-
useless-object-inheritance, # TODO: Remove unnecessary imports
91+
useless-object-inheritance, # TODO: Enable this check and fix code once Python 2 is no longer supported.
9292
cyclic-import, # TODO: Resolve cyclic imports
9393
no-self-use, # TODO: Convert methods to functions where appropriate
9494
too-many-branches, # TODO: Simplify or ignore as appropriate

0 commit comments

Comments
 (0)