Skip to content

Commit 8cad653

Browse files
committed
update pylint exceptions
1 parent 5f388a6 commit 8cad653

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repos:
2424
name: pylint (library code)
2525
types: [python]
2626
args:
27-
- --disable=consider-using-f-string
27+
- --disable=consider-using-f-string,too-many-arguments,too-many-positional-arguments
2828
exclude: "^(docs/|examples/|tests/|setup.py$)"
2929
- id: pylint
3030
name: pylint (example code)

adafruit_esp32spi/adafruit_esp32spi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def _wait_response_cmd(self, cmd, num_responses=None, *, param_len_16=False):
416416
print("Read %d: " % len(responses[0]), responses)
417417
return responses
418418

419-
def _send_command_get_response(
419+
def _send_command_get_response( # pylint: disable=too-many-arguments
420420
self,
421421
cmd,
422422
params=None,

0 commit comments

Comments
 (0)