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