Skip to content

Commit e671d54

Browse files
committed
Disable warnings for too many arguments and local variables
All arguments are needed, and the implementation of the function necessitates more local variables than suggested
1 parent 2692461 commit e671d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_boardtest/boardtest_sd.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
NA = "N/A"
6363

6464

65-
def run_test(
65+
def run_test( # pylint: disable=too-many-arguments,too-many-locals
6666
pins: Sequence[str],
6767
mosi_pin: str = MOSI_PIN_NAME,
6868
miso_pin: str = MISO_PIN_NAME,

0 commit comments

Comments
 (0)