From: Melissa LeBlanc-Williams Date: Wed, 23 Dec 2020 17:15:54 +0000 (-0800) Subject: Update neopixel.py X-Git-Tag: 5.9.2^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/1639b90c94c44bbc6ec13e69cc3d37234a79054f?hp=--cc Update neopixel.py Fix line too long. --- 1639b90c94c44bbc6ec13e69cc3d37234a79054f diff --git a/src/adafruit_blinka/microcontroller/bcm283x/neopixel.py b/src/adafruit_blinka/microcontroller/bcm283x/neopixel.py index 70c9f38..6c0726f 100644 --- a/src/adafruit_blinka/microcontroller/bcm283x/neopixel.py +++ b/src/adafruit_blinka/microcontroller/bcm283x/neopixel.py @@ -22,7 +22,7 @@ _buf = None def neopixel_write(gpio, buf): """NeoPixel Writing Function""" global _led_strip # we'll have one strip we init if its not at first - global _buf # we save a reference to the buf, and if it changes we will cleanup and re-initalize. + global _buf # we save a reference to the buf, and if it changes we will cleanup and re-init. if _led_strip is None or buf is not _buf: # This is safe to call since it doesn't do anything if _led_strip is None