From 87504eaa2cb54524ea9e49fae212b54cb5abba02 Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 29 Apr 2021 18:34:18 -0300 Subject: [PATCH] Disable pylint's `too-many-statements`. This is expected for most modules `main()` function. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 4d7011c7..8fd2726f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -39,6 +39,7 @@ disable = wrong-import-position, protected-access, no-name-in-module, + too-many-statements, duplicate-code, broad-except, too-many-branches, -- GitLab