aboutsummaryrefslogtreecommitdiffstats
path: root/examples/widgets/tetrix/tetrix.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tetrix/tetrix.py')
-rw-r--r--examples/widgets/tetrix/tetrix.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/widgets/tetrix/tetrix.py b/examples/widgets/tetrix/tetrix.py
index 6103afd18..37b0ad36a 100644
--- a/examples/widgets/tetrix/tetrix.py
+++ b/examples/widgets/tetrix/tetrix.py
@@ -53,14 +53,14 @@ from PySide6.QtWidgets import (QApplication, QFrame, QGridLayout, QLabel,
class Piece(IntEnum):
- NoShape = 0
- ZShape = 1
- SShape = 2
- LineShape = 3
- TShape = 4
- SquareShape = 5
- LShape = 6
- MirroredLShape = 7
+ NoShape = 0
+ ZShape = 1
+ SShape = 2
+ LineShape = 3
+ TShape = 4
+ SquareShape = 5
+ LShape = 6
+ MirroredLShape = 7
class TetrixWindow(QWidget):