summaryrefslogtreecommitdiff
path: root/tests/functional/e/external_classmethod_crash.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/e/external_classmethod_crash.py')
-rw-r--r--tests/functional/e/external_classmethod_crash.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/functional/e/external_classmethod_crash.py b/tests/functional/e/external_classmethod_crash.py
index c24bbd872..5e3e0f171 100644
--- a/tests/functional/e/external_classmethod_crash.py
+++ b/tests/functional/e/external_classmethod_crash.py
@@ -1,4 +1,4 @@
-# pylint: disable=too-few-public-methods,unused-argument,useless-object-inheritance
+# pylint: disable=too-few-public-methods,unused-argument
"""tagging a function as a class method cause a crash when checking for
signature overriding
"""
@@ -14,8 +14,6 @@ def fetch_config(mainattr=None):
fetch_order = classmethod(fetch_order)
return fetch_order
-class Aaa(object):
+class Aaa:
"""hop"""
fetch_order = fetch_config('A')
-
-__revision__ = None