We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfdbe00 commit a8e057cCopy full SHA for a8e057c
adafruit_led_animation/animation/pacman.py
@@ -104,10 +104,7 @@ def draw(self):
104
pixel_list[self.pacman[1] + self.black_dir] = BLACK
105
self.pacman[1] += self.direction
106
107
- if (
108
- self.ghosts[3][1] <= self.start_blinking_ghosts
109
- and self.direction == -1
110
- ):
+ if self.ghosts[3][1] <= self.start_blinking_ghosts and self.direction == -1:
111
if self.flag == "beep":
112
for i, ghost in enumerate(self.ghosts):
113
ghost[0] = BLACK
0 commit comments