Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
evaherrada committed Nov 9, 2022
1 parent 326a70e commit 267f708
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion adafruit_max31855.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ class MAX31855:
temperature = sensor.temperature
"""

def __init__(self, spi: SPI, cs: DigitalInOut) -> None:
def __init__(
self, spi: SPI, cs: DigitalInOut # pylint: disable=invalid-name
) -> None:
self.spi_device = SPIDevice(spi, cs)
self.data = bytearray(4)

Expand Down

0 comments on commit 267f708

Please sign in to comment.