Skip to content

Commit

Permalink
Removing unnecessary import block.
Browse files Browse the repository at this point in the history
  • Loading branch information
kattni committed Apr 7, 2021
1 parent a9ec639 commit 6bc830f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions neopixel.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,17 @@
`neopixel` - NeoPixel strip driver
====================================================
* Author(s): Damien P. George, Scott Shawcroft, Carter Nelson, Roy Hooper
* Author(s): Damien P. George, Scott Shawcroft, Carter Nelson, Rose Hooper
"""

# pylint: disable=ungrouped-imports
import sys
import digitalio
from neopixel_write import neopixel_write

if sys.implementation.version[0] < 5:
try:
import _pixelbuf
except ImportError:
import adafruit_pypixelbuf as _pixelbuf
else:
try:
import _pixelbuf
except ImportError:
import adafruit_pypixelbuf as _pixelbuf


__version__ = "0.0.0-auto.0"
Expand Down

0 comments on commit 6bc830f

Please sign in to comment.