From be0989c3134470aece0f590f63350aadb2cfa843 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jan 2025 11:53:18 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump pylint in the pylint group across 1 directory Bumps the pylint group with 1 update in the / directory: [pylint](https://github.com/pylint-dev/pylint). Updates `pylint` from 3.2.7 to 3.3.4 - [Release notes](https://github.com/pylint-dev/pylint/releases) - [Commits](https://github.com/pylint-dev/pylint/compare/v3.2.7...v3.3.4) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pylint ... Signed-off-by: dependabot[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 47245723..1958dfa2 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -74,7 +74,7 @@ pycparser==2.22 pyjwt[crypto]==2.9.0 ; python_version >= '3.7' -pylint==3.2.7 +pylint==3.3.4 pyproject-hooks==1.2.0 ; python_version >= '3.7' From 6cb77fcec1fb532be50b0866145f29557eec2d51 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Thu, 30 Jan 2025 06:58:23 -0500 Subject: [PATCH 2/2] chore: configure pylint positional arguments limit Signed-off-by: Vincent Biret --- .pylintrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.pylintrc b/.pylintrc index 1b5b6580..c2257de2 100644 --- a/.pylintrc +++ b/.pylintrc @@ -468,6 +468,9 @@ max-statements=50 # Minimum number of public methods for a class (see R0903). min-public-methods=2 +# Maximum number of parameters allowed for a method (see R0917). +max-positional-arguments=6 + [IMPORTS]