From bb5f96cc38dfcfa8609eaead7615ec31209c30b6 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Tue, 21 Jan 2025 02:50:26 +0200 Subject: [PATCH] Relax pylint design checker rules also for python2.7 --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 28ceaede..c735e0a8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,6 +20,8 @@ ignore = E722,F841,W503 disable=invalid-name,bare-except,broad-except # invalid-name: needs fixing during a large, project-wide refactor # bare-except,broad-except: Need fixing once thorough testing is easier +max-args = 8 +max-attributes = 8 [MASTER] init-hook = import sys;sys.path.append('src')