From 12ca1590b34fad9d13b46ecfd5f76fa24c1fedaf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 29 Sep 2024 11:45:55 -0400 Subject: [PATCH] Bump pylint from 3.2.7 to 3.3.0 (#1071) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Raman Gupta <7243222+raman325@users.noreply.github.com> --- pyproject.toml | 3 +++ requirements_lint.txt | 2 +- zwave_js_server/event.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 96922874..03e1fd3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/requirements_lint.txt b/requirements_lint.txt index b4a6369b..bcbafba7 100644 --- a/requirements_lint.txt +++ b/requirements_lint.txt @@ -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 \ No newline at end of file diff --git a/zwave_js_server/event.py b/zwave_js_server/event.py index 8a250905..a8fa18ab 100644 --- a/zwave_js_server/event.py +++ b/zwave_js_server/event.py @@ -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