Skip to content

Commit 86c1bc8

Browse files
committed
fix for context pylint bug
1 parent f8e5869 commit 86c1bc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_max31855.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __init__(self, spi, cs):
6464

6565
def _read(self, internal=False):
6666
with self.spi_device as spi:
67-
spi.readinto(self.data)
67+
spi.readinto(self.data) #pylint: disable=no-member
6868
if self.data[3] & 0x01:
6969
raise RuntimeError("thermocouple not connected")
7070
if self.data[3] & 0x02:

0 commit comments

Comments
 (0)