From 350ab078278a8f40e16758c3051143eaea206405 Mon Sep 17 00:00:00 2001 From: Scott Dixon Date: Sun, 29 Sep 2024 14:13:24 -0700 Subject: [PATCH] Fixing pylint Having to disable too-many-positional-arguments check. While it's a good check it seems to be problematic to disable on a case-by-case basis. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index eba4e538..c8ae0a25 100644 --- a/tox.ini +++ b/tox.ini @@ -35,7 +35,7 @@ max-attributes = 12 ignore-paths = .*/(jinja2|markupsafe)/.* min-public-methods = 0 source-roots = src -disable = no-else-return,invalid-name +disable = no-else-return,invalid-name,too-many-positional-arguments [pytest]