aboutsummaryrefslogtreecommitdiffstats
path: root/examples/opengl
diff options
context:
space:
mode:
authorAdrian Herrmann <adrian.herrmann@qt.io>2023-12-05 13:07:12 +0100
committerAdrian Herrmann <adrian.herrmann@qt.io>2023-12-06 12:56:12 +0100
commit55015346f4107ca3383e7ab54be38e72ec8b07d1 (patch)
treea6187eb90cc52356af576dfebd645f6485099a81 /examples/opengl
parent592c734e57b00040329b49dfbe11869980dff88a (diff)
Examples: Fix a number of flake8 errors (part 2)
Import changes, i.e., removed or added imports. Pick-to: 6.6 Change-Id: Iadfa8f77846d8ffef0aeea9fd1a6e7e9c4df5106 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'examples/opengl')
-rw-r--r--examples/opengl/hellogl2/window.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/opengl/hellogl2/window.py b/examples/opengl/hellogl2/window.py
index c7b9946e0..a12636051 100644
--- a/examples/opengl/hellogl2/window.py
+++ b/examples/opengl/hellogl2/window.py
@@ -3,8 +3,7 @@
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
from PySide6.QtCore import Slot, Qt
-from PySide6.QtGui import QGuiApplication
-from PySide6.QtWidgets import (QApplication, QHBoxLayout, QMainWindow,
+from PySide6.QtWidgets import (QHBoxLayout, QMainWindow,
QMessageBox, QPushButton, QSlider,
QVBoxLayout, QWidget)