Skip to content

Commit 1950c73

Browse files
committed
Added pylint ignore line for UART method
1 parent 38af3e1 commit 1950c73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_boardtest/boardtest_uart.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def run_test(pins, tx_pin=TX_PIN_NAME, rx_pin=RX_PIN_NAME, baud_rate=BAUD_RATE):
8484
uart = busio.UART(getattr(board, tx_pin),
8585
getattr(board, rx_pin),
8686
baudrate=baud_rate)
87-
uart.reset_input_buffer()
87+
uart.reset_input_buffer() # pylint: disable=no-member
8888

8989
# Generate test string
9090
test_str = ""

0 commit comments

Comments
 (0)