Skip to content

Commit 2e25702

Browse files
authored
Merge pull request #19 from adafruit/pylint-fix
Fixed linting
2 parents d1f0d70 + 5967f24 commit 2e25702

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_vs1053.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ class VS1053:
9999
# This is NOT thread/re-entrant safe (by design, for less memory hit).
100100
_SCI_SPI_BUFFER = bytearray(4)
101101

102-
def __init__(self, spi: SPI, cs: Pin, xdcs: Pin, dreq: Pin) -> None:
102+
def __init__( # pylint: disable=invalid-name
103+
self, spi: SPI, cs: Pin, xdcs: Pin, dreq: Pin
104+
) -> None:
103105
# Create SPI device for VS1053
104106
self._cs = digitalio.DigitalInOut(cs)
105107
self._vs1053_spi = SPIDevice(

0 commit comments

Comments
 (0)