diff --git a/README.md b/README.md
index d6c9813..ea4105c 100644
--- a/README.md
+++ b/README.md
@@ -3124,7 +3124,7 @@ def draw(screen, images, mario, tiles):
screen.fill((85, 168, 255))
mario.facing_left = mario.spd.x < 0 if mario.spd.x else mario.facing_left
is_airborne = D.s not in get_boundaries(mario.rect, tiles)
- image_index = 4 if is_airborne else (next(mario.frame_cycle) if mario.spd.x else 6)
+ image_index = 4 if is_airborne else next(mario.frame_cycle) if mario.spd.x else 6
screen.blit(images[image_index + (mario.facing_left * 9)], mario.rect)
for t in tiles:
is_border = t.x in [0, (W-1)*16] or t.y in [0, (H-1)*16]
diff --git a/index.html b/index.html
index ef3106d..04a972c 100644
--- a/index.html
+++ b/index.html
@@ -2568,7 +2568,7 @@ W, H, MAX_S = 50, 50<
screen.fill((85, 168, 255))
mario.facing_left = mario.spd.x < 0 if mario.spd.x else mario.facing_left
is_airborne = D.s not in get_boundaries(mario.rect, tiles)
- image_index = 4 if is_airborne else (next(mario.frame_cycle) if mario.spd.x else 6)
+ image_index = 4 if is_airborne else next(mario.frame_cycle) if mario.spd.x else 6
screen.blit(images[image_index + (mario.facing_left * 9)], mario.rect)
for t in tiles:
is_border = t.x in [0, (W-1)*16] or t.y in [0, (H-1)*16]
diff --git a/parse.js b/parse.js
index a2d74d5..aebd7e9 100755
--- a/parse.js
+++ b/parse.js
@@ -302,7 +302,7 @@ const MARIO =
' screen.fill((85, 168, 255))\n' +
' mario.facing_left = mario.spd.x < 0 if mario.spd.x else mario.facing_left\n' +
' is_airborne = D.s not in get_boundaries(mario.rect, tiles)\n' +
- ' image_index = 4 if is_airborne else (next(mario.frame_cycle) if mario.spd.x else 6)\n' +
+ ' image_index = 4 if is_airborne else next(mario.frame_cycle) if mario.spd.x else 6\n' +
' screen.blit(images[image_index + (mario.facing_left * 9)], mario.rect)\n' +
' for t in tiles:\n' +
' is_border = t.x in [0, (W-1)*16] or t.y in [0, (H-1)*16]\n' +