From f2791139c19394da27cc4fd2d0b1676e7766d156 Mon Sep 17 00:00:00 2001 From: Tim Millwood Date: Sat, 30 Jan 2021 13:20:54 +0000 Subject: [PATCH] Remove unused variable from fireflies It seems the `bright_div` variable is not used. --- examples/fireflies.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/fireflies.py b/examples/fireflies.py index f9b9eb9..58701d0 100644 --- a/examples/fireflies.py +++ b/examples/fireflies.py @@ -2,7 +2,6 @@ import time import ws2812b import random -bright_div = 20 numpix = 50 # Number of NeoPixels # Pin where NeoPixels are connected strip = ws2812b.ws2812b(numpix, 0,0) @@ -51,4 +50,4 @@ while True: flashing[i][3] = flashing[i][3] + flashing[i][4] time.sleep(0.005) - \ No newline at end of file +