diff options
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_307.py')
-rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_307.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_307.py b/sources/pyside6/tests/QtWidgets/bug_307.py index 2a149c13e..19da5148e 100644 --- a/sources/pyside6/tests/QtWidgets/bug_307.py +++ b/sources/pyside6/tests/QtWidgets/bug_307.py @@ -42,7 +42,7 @@ from PySide6.QtWidgets import QPushButton, QApplication class Test (QApplication) : def __init__(self, argv) : - super(Test, self).__init__(argv) + super().__init__(argv) self._called = False def called(self): |