Skip to content

Commit a7ebb56

Browse files
committed
fix issues highlighted by pre-commit
1 parent 84c6bcb commit a7ebb56

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@
3737
board_reqs = ["RPi.GPIO", "rpi_ws281x>=4.0.0"]
3838
# Pi 5
3939
if b"brcm,bcm2712" in compat:
40-
board_reqs = ["rpi_ws281x>=4.0.0", "rpi-lgpio", "Adafruit-Blinka-Raspberry-Pi5-Neopixel"]
40+
board_reqs = [
41+
"rpi_ws281x>=4.0.0",
42+
"rpi-lgpio",
43+
"Adafruit-Blinka-Raspberry-Pi5-Neopixel",
44+
]
4145
if (
4246
b"ti,am335x" in compat
4347
): # BeagleBone Black, Green, PocketBeagle, BeagleBone AI, etc.

src/neopixel_write.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
* Author(s): ladyada
1212
"""
13-
# pylint: disable=too-many-boolean-expressions
13+
# pylint: disable=too-many-boolean-expressions, ungrouped-imports
1414
import sys
1515

1616
from adafruit_blinka.agnostic import detector, board_id

0 commit comments

Comments
 (0)