Skip to content

Commit

Permalink
really, really remove wsgi server example; update pylint exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Sep 29, 2024
1 parent 5f388a6 commit d82a300
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repos:
name: pylint (library code)
types: [python]
args:
- --disable=consider-using-f-string
- --disable=consider-using-f-string,too-many-arguments,too-many-positional-arguments
exclude: "^(docs/|examples/|tests/|setup.py$)"
- id: pylint
name: pylint (example code)
Expand Down
2 changes: 1 addition & 1 deletion adafruit_esp32spi/adafruit_esp32spi.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def _wait_response_cmd(self, cmd, num_responses=None, *, param_len_16=False):
print("Read %d: " % len(responses[0]), responses)
return responses

def _send_command_get_response(
def _send_command_get_response( # pylint: disable=too-many-arguments
self,
cmd,
params=None,
Expand Down

0 comments on commit d82a300

Please sign in to comment.