aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/pysidetest/typedef_signal_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/pysidetest/typedef_signal_test.py')
-rw-r--r--sources/pyside6/tests/pysidetest/typedef_signal_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/pysidetest/typedef_signal_test.py b/sources/pyside6/tests/pysidetest/typedef_signal_test.py
index 7357caee0..8bab3eab5 100644
--- a/sources/pyside6/tests/pysidetest/typedef_signal_test.py
+++ b/sources/pyside6/tests/pysidetest/typedef_signal_test.py
@@ -41,7 +41,7 @@ from testbinding import TestObject
class Receiver(QObject):
def __init__(self):
- QObject.__init__(self)
+ super().__init__()
self.received = None
def slot(self, value):