aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py')
-rw-r--r--sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py b/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py
index 23940df71..29294c61d 100644
--- a/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py
+++ b/sources/pyside6/tests/Qt3DExtras/qt3dextras_test.py
@@ -49,7 +49,7 @@ from PySide6.Qt3DExtras import (Qt3DExtras)
class OrbitTransformController(QObject):
def __init__(self, parent):
- super(OrbitTransformController, self).__init__(parent)
+ super().__init__(parent)
self._target = None
self._matrix = QMatrix4x4()
self._radius = 1
@@ -93,7 +93,7 @@ class OrbitTransformController(QObject):
class Window(Qt3DExtras.Qt3DWindow):
def __init__(self):
- super(Window, self).__init__()
+ super().__init__()
# Camera
self.camera().lens().setPerspectiveProjection(45, 16 / 9, 0.1, 1000)