From 6f134283eb3c16be6e056572cda7164822bb1102 Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Wed, 5 Apr 2023 10:48:57 +0200 Subject: [PATCH] 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. --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index f9b1110547..07d503514d 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