summaryrefslogtreecommitdiff
path: root/pylint/interfaces.py
diff options
context:
space:
mode:
authorssolanki <sushobhitsolanki@gmail.com>2018-06-20 06:55:02 +0530
committerssolanki <sushobhitsolanki@gmail.com>2018-06-20 06:55:02 +0530
commit3cf841a6a22360b28938b7e18116066a18f59532 (patch)
treee8a29c3f1f97ac27957110aba3e2f328d8f6e340 /pylint/interfaces.py
parentaa54123f12a9e245f5914fd56c0cafd4cdf9802a (diff)
downloadpylint-git-3cf841a6a22360b28938b7e18116066a18f59532.tar.gz
Add new checker useless-object-inheritance.
Close #2177
Diffstat (limited to 'pylint/interfaces.py')
-rw-r--r--pylint/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/interfaces.py b/pylint/interfaces.py
index c43ec9260..9f57308d2 100644
--- a/pylint/interfaces.py
+++ b/pylint/interfaces.py
@@ -24,7 +24,7 @@ UNDEFINED = Confidence('UNDEFINED',
CONFIDENCE_LEVELS = [HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED]
-class Interface(object):
+class Interface:
"""Base class for interfaces."""
@classmethod
def is_implemented_by(cls, instance):