diff --git a/backend/Pipfile b/backend/Pipfile index 1b451b81..069d66bb 100644 --- a/backend/Pipfile +++ b/backend/Pipfile @@ -36,7 +36,7 @@ uvicorn = ">=0.20.0" aioresponses = ">=0.7.4" mypy = ">=1.3.1" pluggy = "<=1.5.0" -pylint = "==3.2.7" +pylint = "==3.3.1" pytest = "<=8.3.3" pytest-asyncio = "<=0.21.2" pytest-cov = ">=4.0.0" diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 0f888842..a0648a4b 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -71,6 +71,7 @@ disable = [ 'unused-argument', # Gives false positives. 'wrong-import-position', 'contextmanager-generator-missing-cleanup', # Gives false positives. + 'too-many-positional-arguments', ] [tool.bandit]