pylint disable moved

This commit is contained in:
Kattni 2018-02-19 17:37:13 -05:00
parent c3c7643e1e
commit de7c17dc23

View file

@ -1,5 +1,6 @@
import time
from adafruit_circuitplayground.express import cpx
# pylint: disable=stop-iteration-return
def wheel(pos):
@ -25,7 +26,6 @@ def cycle_sequence(seq):
def rainbow_lamp(seq):
g = cycle_sequence(seq)
while True:
# pylint: disable=stop-iteration-return
cpx.pixels.fill(wheel(next(g)))
yield