From 07943b5bcfc8e170c35126e36ec0cca939675bf8 Mon Sep 17 00:00:00 2001 From: secwall Date: Sat, 21 Sep 2024 12:52:30 +0200 Subject: [PATCH] Fix too-many-positional-arguments ignore in pylintrc --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 06e5784..c15f1a9 100644 --- a/.pylintrc +++ b/.pylintrc @@ -426,7 +426,8 @@ disable=raw-checker-failed, consider-using-dict-items, redundant-u-string-prefix, raise-missing-from, - too-many-arguments + too-many-arguments, + too-many-positional-arguments # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option