Skip to content

Commit

Permalink
fix issues highlighted by pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jepler committed Dec 11, 2024
1 parent 84c6bcb commit a7ebb56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
board_reqs = ["RPi.GPIO", "rpi_ws281x>=4.0.0"]
# Pi 5
if b"brcm,bcm2712" in compat:
board_reqs = ["rpi_ws281x>=4.0.0", "rpi-lgpio", "Adafruit-Blinka-Raspberry-Pi5-Neopixel"]
board_reqs = [
"rpi_ws281x>=4.0.0",
"rpi-lgpio",
"Adafruit-Blinka-Raspberry-Pi5-Neopixel",
]
if (
b"ti,am335x" in compat
): # BeagleBone Black, Green, PocketBeagle, BeagleBone AI, etc.
Expand Down
2 changes: 1 addition & 1 deletion src/neopixel_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Author(s): ladyada
"""
# pylint: disable=too-many-boolean-expressions
# pylint: disable=too-many-boolean-expressions, ungrouped-imports
import sys

from adafruit_blinka.agnostic import detector, board_id
Expand Down

0 comments on commit a7ebb56

Please sign in to comment.