From 311537731df0bd0565f31ce22f11de11dd97a881 Mon Sep 17 00:00:00 2001 From: John Edgar Park Date: Fri, 17 Aug 2018 08:54:13 -0700 Subject: [PATCH] fixes to color value parens --- Adabot_Operation_Game/adabot_operation_game.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Adabot_Operation_Game/adabot_operation_game.py b/Adabot_Operation_Game/adabot_operation_game.py index fc9762f2e..e17be76ad 100644 --- a/Adabot_Operation_Game/adabot_operation_game.py +++ b/Adabot_Operation_Game/adabot_operation_game.py @@ -26,7 +26,7 @@ WHITE = (3, 3, 3) COLORS = [MAGENTA, VIOLET, BLUE, CYAN, GREEN, YELLOW, ORANGE, RED, WHITE] -cpx.pixels.fill((WHITE)) +cpx.pixels.fill(WHITE) while True: for i in range(7): @@ -37,6 +37,6 @@ while True: if touch_pads[i].value: # print("Touched %s" % i) # uncomment for debugging - cpx.pixels.fill((RED)) + cpx.pixels.fill(RED) cpx.play_tone(660, 0.7) - cpx.pixels.fill((COLORS[i])) + cpx.pixels.fill(COLORS[i])