summaryrefslogtreecommitdiff
path: root/tests/functional/r
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2020-05-05 08:45:09 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-05 09:52:38 +0200
commit61e0e6b65476f083960ce5563745f337fb2454be (patch)
tree45139dcb68ae5ee08f41f9b06e3d10c81465fd8b /tests/functional/r
parente6c9ef55bcd962366685a0d8f511d8567bddb78c (diff)
downloadpylint-git-61e0e6b65476f083960ce5563745f337fb2454be.tar.gz
Address the super violations in the codebase
Diffstat (limited to 'tests/functional/r')
-rw-r--r--tests/functional/r/regression_property_no_member_844.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/r/regression_property_no_member_844.py b/tests/functional/r/regression_property_no_member_844.py
index 2c919fe2f..759b7bfe3 100644
--- a/tests/functional/r/regression_property_no_member_844.py
+++ b/tests/functional/r/regression_property_no_member_844.py
@@ -12,7 +12,7 @@ class Parent:
class Child(Parent):
@Parent.thing.getter
def thing(self):
- return super(Child, self).thing + '!'
+ return super().thing + '!'
print(Child().thing)