diff options
author | Cristián Maureira-Fredes <[email protected]> | 2023-04-05 17:18:08 +0200 |
---|---|---|
committer | Cristian Maureira-Fredes <[email protected]> | 2023-04-05 20:03:22 +0000 |
commit | e3c22d12f3f91098042f3f09a75093addbd5bd80 (patch) | |
tree | 0b246ad62217d05cc123c370f3254e58d8946789 /examples/opengl/hellogl2 | |
parent | 23cc8b6f01205567904300c494854f0bbaad11e0 (diff) |
examples: remove unused imports
Change-Id: I88a7bb2fe91abcfdef6e6014b088d08c4e613893
Pick-to: 6.5
Reviewed-by: Friedemann Kleint <[email protected]>
Diffstat (limited to 'examples/opengl/hellogl2')
-rw-r--r-- | examples/opengl/hellogl2/hellogl2.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/opengl/hellogl2/hellogl2.py b/examples/opengl/hellogl2/hellogl2.py index e66177e04..ce871cda1 100644 --- a/examples/opengl/hellogl2/hellogl2.py +++ b/examples/opengl/hellogl2/hellogl2.py @@ -8,8 +8,7 @@ from argparse import ArgumentParser, RawTextHelpFormatter import ctypes import math import sys -from PySide6.QtCore import (QCoreApplication, Signal, Slot, - Qt, QSize, QPointF) +from PySide6.QtCore import Signal, Slot, Qt, QSize, QPointF from PySide6.QtGui import (QVector3D, QOpenGLFunctions, QMatrix4x4, QOpenGLContext, QSurfaceFormat, QVector3DList) from PySide6.QtOpenGL import (QOpenGLVertexArrayObject, QOpenGLBuffer, |