From 689ca5cfe5a9aaaf60ff1224dadf673e73073fb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Tue, 19 Nov 2024 13:42:56 +0100 Subject: [PATCH] Lint/pylint: disable too-many-positional-arguments check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The new version of Pylint reports this issue in too many places. It is unlikely that we would change all occurrences of it just to make Pylint happy. Disable the check. Signed-off-by: Tomáš Hozza --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index cd92f299..95f5f542 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,6 +6,7 @@ disable=missing-docstring, superfluous-parens, too-many-locals, too-many-arguments, + too-many-positional-arguments, consider-using-with, consider-using-from-import, line-too-long,