aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtCore/bug_1019.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtCore/bug_1019.py')
-rw-r--r--sources/pyside6/tests/QtCore/bug_1019.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtCore/bug_1019.py b/sources/pyside6/tests/QtCore/bug_1019.py
index 24fb150b9..c7f1ea358 100644
--- a/sources/pyside6/tests/QtCore/bug_1019.py
+++ b/sources/pyside6/tests/QtCore/bug_1019.py
@@ -40,7 +40,7 @@ from PySide6.QtCore import QCoreApplication, QTimer, Slot
class MyTimer (QTimer):
def __init__(self):
- QTimer.__init__(self)
+ super().__init__()
self.startCalled = False
@Slot()