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.
1 parent bf78cc6 commit 9c68446Copy full SHA for 9c68446
adafruit_platformdetect/chip.py
@@ -27,7 +27,11 @@ class Chip:
27
"""Attempt detection of current chip / CPU."""
28
def __init__(self, detector):
29
self.detector = detector
30
- self._binho = None
+ try:
31
+ os.environ.get('BLINKA_NOVA'):
32
+ self._binho = None
33
+ except KeyError: # no relevant environment var
34
+ pass
35
36
@property
37
def id(self): # pylint: disable=invalid-name,too-many-branches,too-many-return-statements
0 commit comments