aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/signals/qobject_sender_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/signals/qobject_sender_test.py')
-rw-r--r--sources/pyside6/tests/signals/qobject_sender_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/signals/qobject_sender_test.py b/sources/pyside6/tests/signals/qobject_sender_test.py
index d8ceb55f8..15b04dda3 100644
--- a/sources/pyside6/tests/signals/qobject_sender_test.py
+++ b/sources/pyside6/tests/signals/qobject_sender_test.py
@@ -46,11 +46,11 @@ from helper.usesqcoreapplication import UsesQCoreApplication
class ExtQTimer(QTimer):
def __init__(self):
- QTimer.__init__(self)
+ super().__init__()
class Receiver(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
self.the_sender = None
def callback(self):