From 246471a5b70548b0230db96755b9f519172aadad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristi=C3=A1n=20Maureira-Fredes?= Date: Sun, 5 Jan 2020 14:46:30 +0100 Subject: examples: remove unused imports Change-Id: I85216bcfc23161b832ecb675ea58f33e67004fe9 Reviewed-by: Friedemann Kleint --- examples/3d/simple3d.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'examples/3d') 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): -- cgit v1.2.3