Skip to content

Commit 267f708

Browse files
committed
Fixed linting
1 parent 326a70e commit 267f708

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_max31855.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,9 @@ class MAX31855:
7878
temperature = sensor.temperature
7979
"""
8080

81-
def __init__(self, spi: SPI, cs: DigitalInOut) -> None:
81+
def __init__(
82+
self, spi: SPI, cs: DigitalInOut # pylint: disable=invalid-name
83+
) -> None:
8284
self.spi_device = SPIDevice(spi, cs)
8385
self.data = bytearray(4)
8486

0 commit comments

Comments
 (0)