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 125f2ad commit f418f0fCopy full SHA for f418f0f
adafruit_platformdetect/board.py
@@ -316,7 +316,7 @@ def _clockwork_pi_id(self):
316
317
def _udoo_id(self):
318
"""Try to detect the id of udoo board."""
319
- board_asset_tag == self.detector.check_board_asset_tag_value()
+ board_asset_tag = self.detector.check_board_asset_tag_value()
320
for board_id, board_tags in boards._UDOO_BOARD_IDS.items():
321
if any(v == board_asset_tag for v in board_tags):
322
return board_id
adafruit_platformdetect/constants/boards.py
@@ -337,8 +337,4 @@
337
_PINE64_DEV_IDS = (PINE64, PINEBOOK, PINEPHONE)
338
339
# UDOO
340
-_UDOO_BOARD_IDS = {
341
- UDOO_BOLT: (
342
- "SC40-2000-0000-C0|C",
343
- )
344
-}
+_UDOO_BOARD_IDS = {UDOO_BOLT: ("SC40-2000-0000-C0|C",)}
0 commit comments