Skip to content

Commit

Permalink
pylint: Disable useless-object-inheritance
Browse files Browse the repository at this point in the history
Used for py2 compat.
  • Loading branch information
cdown committed Oct 25, 2018
1 parent 2556733 commit 15d17a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[MESSAGES CONTROL]
# import-error and no-name-in-module are false positives for six.moves, pylint
# really hates that. If it's really broken, we'll pick it up in tests.
disable=locally-disabled,import-error,no-name-in-module,invalid-name,missing-docstring,wrong-import-order,too-many-arguments,too-few-public-methods
disable=locally-disabled,import-error,no-name-in-module,invalid-name,missing-docstring,wrong-import-order,too-many-arguments,too-few-public-methods,useless-object-inheritance

0 comments on commit 15d17a4

Please sign in to comment.