aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_844.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_844.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_844.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_844.py b/sources/pyside6/tests/QtWidgets/bug_844.py
index 1c7705939..879c08850 100644
--- a/sources/pyside6/tests/QtWidgets/bug_844.py
+++ b/sources/pyside6/tests/QtWidgets/bug_844.py
@@ -40,7 +40,7 @@ from PySide6.QtCore import QObject, QTimer
class QtKeyPressListener(QObject):
def __init__(self, obj):
- QObject.__init__(self)
+ super().__init__()
obj.installEventFilter(self)
def eventFilter(self, obj, event):