Skip to content

Commit

Permalink
Bump pylint from 3.2.7 to 3.3.0 (#1071)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Raman Gupta <7243222+raman325@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and raman325 committed Sep 29, 2024
1 parent ee88d5e commit 12ca159
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ max-attributes = 15
[tool.pylint.FORMAT]
expected-line-ending-format = "LF"

[tool.pylint.MESSAGE_CONTROL]
disable="too-many-positional-arguments"

[tool.pytest.ini_options]
asyncio_mode = "auto"

Expand Down
2 changes: 1 addition & 1 deletion requirements_lint.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
black==24.8.0
mypy==1.11.2
pylint==3.2.7
pylint==3.3.0
pylint-strict-informational==0.1
pre-commit==3.8.0
ruff==0.6.7
2 changes: 1 addition & 1 deletion zwave_js_server/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,4 @@ def _handle_event_protocol(self, event: Event) -> None:
if handler is None:
LOGGER.debug("Received unknown event: %s", event)
return
handler(event)
handler(event) # pylint: disable=not-callable

0 comments on commit 12ca159

Please sign in to comment.