aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/signals/ref05_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/signals/ref05_test.py')
-rw-r--r--sources/pyside6/tests/signals/ref05_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/signals/ref05_test.py b/sources/pyside6/tests/signals/ref05_test.py
index 3358c3521..e16f7e391 100644
--- a/sources/pyside6/tests/signals/ref05_test.py
+++ b/sources/pyside6/tests/signals/ref05_test.py
@@ -44,7 +44,7 @@ from helper.usesqcoreapplication import UsesQCoreApplication
class ExtQObject(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
self.counter = 0
@Slot('qreal')