Skip to content

Commit c8187bc

Browse files
authored
Merge pull request #29 from adafruit/pylint-fix
Fixed linting
2 parents 326a70e + 267f708 commit c8187bc

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)