aboutsummaryrefslogtreecommitdiffstats
path: root/examples/3d
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2020-01-05 14:46:30 +0100
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2020-01-06 10:23:09 +0100
commit246471a5b70548b0230db96755b9f519172aadad (patch)
treeea5bf852640ecde8fe2befa0328e40b208560043 /examples/3d
parentcc762cf0c64344f08527c17ba57ed34cdf1dcffa (diff)
examples: remove unused imports
Change-Id: I85216bcfc23161b832ecb675ea58f33e67004fe9 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'examples/3d')
-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):