aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick3d
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/quick3d
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/quick3d')
-rw-r--r--examples/quick3d/proceduraltexture/main.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/quick3d/proceduraltexture/main.py b/examples/quick3d/proceduraltexture/main.py
index 971b0ecb4..7c3553aa3 100644
--- a/examples/quick3d/proceduraltexture/main.py
+++ b/examples/quick3d/proceduraltexture/main.py
@@ -6,6 +6,9 @@ from PySide6.QtQml import QQmlApplicationEngine
from gradienttexture import GradientTexture
+from pathlib import Path
+
+import os
import sys
if __name__ == "__main__":