From c67b38dfa4145985493dd4c269a315350da27933 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20B=C3=B6ther?= Date: Mon, 23 Sep 2024 17:54:42 +0800 Subject: [PATCH] add unused option --- .pylintrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 11f3267d3..9469027d4 100644 --- a/.pylintrc +++ b/.pylintrc @@ -186,8 +186,8 @@ disable=raw-checker-failed, too-many-arguments, # we can't determine a good limit here. reviews should spot bad cases of this. duplicate-code, # Mostly imports and test setup. cyclic-import, # We use these inside methods that require models from multiple apps. Tests will catch actual errors. - too-many-instance-attributes # We always ignore this anyways - + too-many-instance-attributes, # We always ignore this anyways + too-many-positional-arguments # We do not want to limit the number of 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 # multiple time (only on the command line, not in the configuration file where