Skip to content

Commit 17f2f42

Browse files
author
Sofia "dzshn" N. L
committed
style: fix a long comment
1 parent 11fe40b commit 17f2f42

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tetris/game.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def __init__(
4444
self.engine = engine
4545
self.seed = secrets.token_bytes()
4646
if board is None:
47-
# Internally, we use 2x the height to "buffer" the board being pushed above the view
47+
# Internally, we use 2x the height to "buffer" the board being
48+
# pushed above the view (e.g.: with garbage)
4849
self.board = np.zeros((board_size[0] * 2, board_size[1]), dtype=np.int8)
4950

5051
else:

0 commit comments

Comments
 (0)