From 1c5be7ea9c5f5258bf8702ba9411010b182c6551 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 17:22:03 +0000 Subject: [PATCH 1/2] Bump pylint from 3.2.7 to 3.3.1 Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.7 to 3.3.1. - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.7...v3.3.1) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-test.txt b/requirements-test.txt index afc3c31df..c5146fc0d 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -3,7 +3,7 @@ black==24.8.0 flake8==7.1.1 mypy==1.11.2 PlexAPI==4.15.16 -pylint==3.2.7 +pylint==3.3.1 rstcheck==6.2.4 types-beautifulsoup4==4.12.0.20240907 types-html5lib==1.1.11.20240806 From 1f144cf03b90749c759575b80e24c70e8134c9a6 Mon Sep 17 00:00:00 2001 From: Erik Date: Mon, 7 Oct 2024 10:58:43 +0200 Subject: [PATCH 2/2] Disable too-many-positional-arguments --- pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/pylintrc b/pylintrc index 1a519920b..b8f028fe7 100644 --- a/pylintrc +++ b/pylintrc @@ -8,6 +8,7 @@ disable= too-few-public-methods, too-many-arguments, too-many-instance-attributes, + too-many-positional-arguments, too-many-public-methods, duplicate-code, too-many-nested-blocks,