We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 209b4eb + 1dc8fca commit 0b6238bCopy full SHA for 0b6238b
adafruit_seesaw/neopixel.py
@@ -19,6 +19,12 @@ def const(x):
19
return x
20
21
22
+### hack to make sure this module is not placed in root CIRCUITPY/lib folder
23
+if "." not in __name__:
24
+ raise ImportError(
25
+ "seesaw neopixel being imported from unexpected location - is seesaw neopixel use intended?"
26
+ )
27
+
28
__version__ = "0.0.0+auto.0"
29
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
30
0 commit comments