Skip to content

Commit d5eee9f

Browse files
authored
- remove optional parentheses
1 parent 6659b4e commit d5eee9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapter-11-mouse_and_keyboard_interaction/paint_app/paint_app.pyde

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def draw():
3939
fill('#000000')
4040
rect(0, 0, palette, height)
4141
# color swatches
42-
for (i, swatch) in enumerate(swatches):
42+
for i, swatch in enumerate(swatches):
4343
sx = int(i%2) * palette/2
4444
sy = int(i/2) * palette/2
4545
fill(swatch)

0 commit comments

Comments
 (0)