Skip to content

Commit 6b16884

Browse files
committed
Formatted according to Black
1 parent 11f224d commit 6b16884

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

adafruit_platformdetect/board.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ def _armbian_id(self) -> Optional[str]:
374374
elif board_value == "bananapim2plus":
375375
board = boards.BANANA_PI_M2_PLUS
376376
elif board_value == "bananapim2berry":
377-
board = boards.BANANA_PI_M2_BERRY
377+
board = boards.BANANA_PI_M2_BERRY
378378
elif board_value == "bananapim5":
379379
board = boards.BANANA_PI_M5
380380
elif board_value == "orangepizeroplus2-h5":

adafruit_platformdetect/constants/boards.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,12 @@
239239
_NANOPI_IDS = (NANOPI_NEO_AIR, NANOPI_DUO2, NANOPI_NEO)
240240

241241
# BananaPI
242-
_BANANA_PI_IDS = (BANANA_PI_M2_ZERO, BANANA_PI_M2_PLUS, BANANA_PI_M2_BERRY, BANANA_PI_M5)
242+
_BANANA_PI_IDS = (
243+
BANANA_PI_M2_ZERO,
244+
BANANA_PI_M2_PLUS,
245+
BANANA_PI_M2_BERRY,
246+
BANANA_PI_M5,
247+
)
243248

244249
# LubanCat
245250
_LUBANCAT_IDS = (

0 commit comments

Comments
 (0)