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_manager.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_manager.py')
-rw-r--r-- | tests/unittest_manager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittest_manager.py b/tests/unittest_manager.py index 4aa6e4ba..4e9c4ab6 100644 --- a/tests/unittest_manager.py +++ b/tests/unittest_manager.py @@ -46,7 +46,7 @@ class AstroidManagerTest( resources.SysPathSetup, resources.AstroidCacheSetupMixin, unittest.TestCase ): def setUp(self): - super(AstroidManagerTest, self).setUp() + super().setUp() self.manager = manager.AstroidManager() def test_ast_from_file(self): |