diff --git a/pylintrc b/pylintrc index 8feb318..6be1aad 100644 --- a/pylintrc +++ b/pylintrc @@ -14,6 +14,7 @@ disable= too-many-instance-attributes, too-many-lines, too-many-locals, + too-many-positional-arguments, too-many-public-methods, too-many-return-statements, too-many-statements, @@ -26,7 +27,7 @@ disable= no-else-return [EXCEPTIONS] -overgeneral-exceptions=Exception +overgeneral-exceptions=builtins.Exception [TYPECHECK] diff --git a/requirements_tests.txt b/requirements_tests.txt index fdf795c..0183758 100644 --- a/requirements_tests.txt +++ b/requirements_tests.txt @@ -1,4 +1,4 @@ flake8==7.1.1 -pylint==3.2.7 +pylint==3.3.1 black==24.10.0 pytest==8.3.3