aboutsummaryrefslogtreecommitdiffstats
path: root/examples/opengl
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2021-05-12 17:10:35 +0200
committerCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2021-05-13 13:14:55 +0200
commit3c1a6f732a3a2c69e7133d07b89db0bdd788316b (patch)
tree44114d011f4e0a3522896df9c8113bee1bba3b78 /examples/opengl
parenta6dfbb2a72235ecabc7b1d61c085a7d7de3df8d0 (diff)
examples: clean and improve code
- removing '\' from long lines, - use f-strings instead of concatenating strings - Use f-strings instead of the old '%' formatting Task-number: PYSIDE-841 Change-Id: I4983c25a6272e10119d5d1a74c180828ca6f64e6 Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'examples/opengl')
-rw-r--r--examples/opengl/textures/textures.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/opengl/textures/textures.py b/examples/opengl/textures/textures.py
index 521c099b3..cbefe41d6 100644
--- a/examples/opengl/textures/textures.py
+++ b/examples/opengl/textures/textures.py
@@ -110,7 +110,7 @@ class GLWidget(QtOpenGL.QGLWidget):
if not GLWidget.sharedObject:
self.textures = []
for i in range(6):
- self.textures.append(self.bindTexture(QtGui.QPixmap(":/images/side%d.png" % (i + 1))))
+ self.textures.append(self.bindTexture(QtGui.QPixmap(f":/images/side{i + 1}.png")))
GLWidget.sharedObject = self.makeObject()
GLWidget.refCount += 1