Skip to content

Commit 4530c38

Browse files
authored
Merge pull request #24 from adafruit/pylint-fix
Fixed linting
2 parents df95fa9 + f6eb26f commit 4530c38

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

adafruit_max31856.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,10 @@ class MAX31856:
160160
_BUFFER = bytearray(4)
161161

162162
def __init__(
163-
self, spi: SPI, cs: DigitalInOut, thermocouple_type: int = ThermocoupleType.K
163+
self,
164+
spi: SPI,
165+
cs: DigitalInOut, # pylint: disable=invalid-name
166+
thermocouple_type: int = ThermocoupleType.K,
164167
) -> None:
165168
self._device = SPIDevice(spi, cs, baudrate=500000, polarity=0, phase=1)
166169

0 commit comments

Comments
 (0)