summaryrefslogtreecommitdiff
path: root/tests/functional/o/object_as_class_attribute.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/o/object_as_class_attribute.py')
-rw-r--r--tests/functional/o/object_as_class_attribute.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/functional/o/object_as_class_attribute.py b/tests/functional/o/object_as_class_attribute.py
index 2ac729b36..8e44abcb9 100644
--- a/tests/functional/o/object_as_class_attribute.py
+++ b/tests/functional/o/object_as_class_attribute.py
@@ -1,4 +1,4 @@
-# pylint: disable=too-few-public-methods,useless-object-inheritance
+# pylint: disable=too-few-public-methods
"""Test case for the problem described below :
- A class extends 'object'
- This class defines its own __init__()
@@ -9,9 +9,8 @@
object.__init__()
"""
-__revision__ = None
-class Statement(object):
+class Statement:
""" ... """
def __init__(self):
pass