Skip to content

Commit c05ca26

Browse files
committed
pylint buggy
1 parent 8dc0cf7 commit c05ca26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_esp32spi/adafruit_esp32spi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def _send_command(self, cmd, params=None, *, param_len_16=False):
200200
break
201201
else:
202202
raise RuntimeError("ESP32 timed out on SPI select")
203-
spi.write(bytearray(packet))
203+
spi.write(bytearray(packet)) # pylint: disable=no-member
204204
if self._debug:
205205
print("Wrote: ", [hex(b) for b in packet])
206206

0 commit comments

Comments
 (0)