diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-02-17 23:24:08 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-02-17 23:51:41 +0100 |
commit | 9c8c85801cfaeb57a742cbb2b9a4c732fca714e9 (patch) | |
tree | fce3a6033790a28ea360a6b977dc9ffbcad47f96 /tests/unittest_scoped_nodes.py | |
parent | 0b17c79b15c5598a0795baea576656d92dedbcd3 (diff) | |
download | astroid-git-simplification-for-python3.6-code.tar.gz |
Use new style super when applicablesimplification-for-python3.6-code
Diffstat (limited to 'tests/unittest_scoped_nodes.py')
-rw-r--r-- | tests/unittest_scoped_nodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittest_scoped_nodes.py b/tests/unittest_scoped_nodes.py index 1ea68a1c..104cdae1 100644 --- a/tests/unittest_scoped_nodes.py +++ b/tests/unittest_scoped_nodes.py @@ -73,7 +73,7 @@ def _test_dict_interface(self, node, test_attr): class ModuleLoader(resources.SysPathSetup): def setUp(self): - super(ModuleLoader, self).setUp() + super().setUp() self.module = resources.build_file("data/module.py", "data.module") self.module2 = resources.build_file("data/module2.py", "data.module2") self.nonregr = resources.build_file("data/nonregr.py", "data.nonregr") |