summaryrefslogtreecommitdiff
path: root/tests/functional/d/deprecated_methods_py3.py
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/d/deprecated_methods_py3.py
parente6c9ef55bcd962366685a0d8f511d8567bddb78c (diff)
downloadpylint-git-61e0e6b65476f083960ce5563745f337fb2454be.tar.gz
Address the super violations in the codebase
Diffstat (limited to 'tests/functional/d/deprecated_methods_py3.py')
-rw-r--r--tests/functional/d/deprecated_methods_py3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/d/deprecated_methods_py3.py b/tests/functional/d/deprecated_methods_py3.py
index d390c8d79..80428c79f 100644
--- a/tests/functional/d/deprecated_methods_py3.py
+++ b/tests/functional/d/deprecated_methods_py3.py
@@ -32,7 +32,7 @@ class SuperCrash(unittest.TestCase):
def __init__(self):
# should not crash.
- super(SuperCrash, self)()
+ super()()
xml.etree.ElementTree.iterparse(None)