pimoroni / unicorn-hat

Python library for Unicorn pHAT and HAT. 32 or 64 blinding ws2812 pixels for your Raspberry Pi
https://shop.pimoroni.com/products/unicorn-hat
MIT License
370 stars 130 forks source link

Wrap range in list function to fix for Python 3 #8

Closed bennuttall closed 9 years ago

bennuttall commented 9 years ago

You can't add ranges together with + in Python 3 as they're range objects, not just lists.

list(range(10)) yields a list so it works in both