diff options
| author | Claudiu Popa <pcmanticore@gmail.com> | 2020-05-05 08:45:09 +0200 |
|---|---|---|
| committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-05-05 09:52:38 +0200 |
| commit | 61e0e6b65476f083960ce5563745f337fb2454be (patch) | |
| tree | 45139dcb68ae5ee08f41f9b06e3d10c81465fd8b /tests/functional/d/deprecated_methods_py3.py | |
| parent | e6c9ef55bcd962366685a0d8f511d8567bddb78c (diff) | |
| download | pylint-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.py | 2 |
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) |
