From: Tom Krizek Date: Wed, 5 Apr 2023 08:48:57 +0000 (+0200) Subject: Disable pylint check for too-few-public-methods X-Git-Tag: v9.19.14~35^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f134283eb3c16be6e056572cda7164822bb1102;p=thirdparty%2Fbind9.git Disable pylint check for too-few-public-methods This check is overly aggressive and not really useful, especially for non-Python codebase, where the primary use of Python is for testing. --- diff --git a/.pylintrc b/.pylintrc index f9b1110547f..07d503514d1 100644 --- a/.pylintrc +++ b/.pylintrc @@ -7,3 +7,4 @@ disable= C0209, # consider-using-f-string C0415, # import-outside-toplevel R0801, # duplicate-code + R0903, # too-few-public-methods