aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_811.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_811.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_811.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_811.py b/sources/pyside6/tests/QtWidgets/bug_811.py
index 1ba027dd0..cde5f2fe9 100644
--- a/sources/pyside6/tests/QtWidgets/bug_811.py
+++ b/sources/pyside6/tests/QtWidgets/bug_811.py
@@ -43,7 +43,7 @@ from PySide6.QtWidgets import QTextEdit
class TestUserData(QTextBlockUserData):
def __init__(self, data):
- super(TestUserData, self).__init__()
+ super().__init__()
self.data = data
class TestUserDataRefCount(UsesQApplication):