From d8a8dc84d67f59c9e326c098f67ea058876afe81 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 29 Oct 2021 14:01:36 +0200 Subject: [PATCH] setup.cfg: increase max-statements to 75 The default is 50, which we hit in a few places already. Let's do 75, equally arbitrary but gives us a bit more wiggle room. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index c75bf968..cdbdba7f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,6 +6,7 @@ ignored-classes=osbuild.loop.LoopInfo [pylint.DESIGN] max-attributes=10 +max-statements=75 [pycodestyle] max-line-length = 120