aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py')
-rw-r--r--sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py b/sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py
index 2cb62d614..26b3cf7f8 100644
--- a/sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py
+++ b/sources/pyside6/tests/QtPrintSupport/returnquadruplesofnumbers_test.py
@@ -43,15 +43,15 @@ from helper.usesqapplication import UsesQApplication
class Layout(QLayout):
def __init__(self):
- QLayout.__init__(self)
+ super().__init__()
class GraphicsLayout(QGraphicsLayout):
def __init__(self):
- QGraphicsLayout.__init__(self)
+ super().__init__()
class GraphicsLayoutItem(QGraphicsLayoutItem):
def __init__(self):
- QGraphicsLayoutItem.__init__(self)
+ super().__init__()
class ReturnsQuadruplesOfNumbers(UsesQApplication):
def compareTuples(self, ta, tb):