aboutsummaryrefslogtreecommitdiffstats
path: root/examples/3d/simple3d.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/3d/simple3d.py')
-rw-r--r--examples/3d/simple3d.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/3d/simple3d.py b/examples/3d/simple3d.py
index 2fad3c403..cea662a95 100644
--- a/examples/3d/simple3d.py
+++ b/examples/3d/simple3d.py
@@ -42,10 +42,9 @@
"""PySide2 port of the qt3d/simple-cpp example from Qt v5.x"""
import sys
-from PySide2.QtCore import(Property, QObject, QPropertyAnimation, Signal, Slot)
-from PySide2.QtGui import (QGuiApplication, QMatrix4x4, QQuaternion, QVector3D, QWindow)
+from PySide2.QtCore import(Property, QObject, QPropertyAnimation, Signal)
+from PySide2.QtGui import (QGuiApplication, QMatrix4x4, QQuaternion, QVector3D)
from PySide2.Qt3DCore import (Qt3DCore)
-from PySide2.Qt3DRender import (Qt3DRender)
from PySide2.Qt3DExtras import (Qt3DExtras)
class OrbitTransformController(QObject):