aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick3d/customgeometry/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quick3d/customgeometry/main.py')
-rw-r--r--examples/quick3d/customgeometry/main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/quick3d/customgeometry/main.py b/examples/quick3d/customgeometry/main.py
index ff1ce384e..148330d91 100644
--- a/examples/quick3d/customgeometry/main.py
+++ b/examples/quick3d/customgeometry/main.py
@@ -11,9 +11,9 @@ from PySide6.QtQml import QQmlApplicationEngine
from PySide6.QtQuick3D import QQuick3D
# Imports to trigger the resources and registration of QML elements
-import resources_rc
-from examplepoint import ExamplePointGeometry
-from exampletriangle import ExampleTriangleGeometry
+import resources_rc # noqa: F401
+from examplepoint import ExamplePointGeometry # noqa: F401
+from exampletriangle import ExampleTriangleGeometry # noqa: F401
if __name__ == "__main__":
os.environ["QT_QUICK_CONTROLS_STYLE"] = "Basic"