aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_433.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_433.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_433.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_433.py b/sources/pyside6/tests/QtWidgets/bug_433.py
index a68a0615c..0cae07435 100644
--- a/sources/pyside6/tests/QtWidgets/bug_433.py
+++ b/sources/pyside6/tests/QtWidgets/bug_433.py
@@ -41,7 +41,7 @@ from PySide6.QtWidgets import QApplication, QGraphicsScene, QGraphicsView
class Test(QGraphicsView):
def __init__(self, parent=None):
- super(Test, self).__init__(parent)
+ super().__init__(parent)
self.s = QGraphicsScene()
self.setScene(self.s)