From 482bd05b629464adf0246daf5a271e1ef39454ec Mon Sep 17 00:00:00 2001 From: Rafael Guterres Jeffman <rjeffman@redhat.com> Date: Thu, 29 Apr 2021 18:06:52 -0300 Subject: [PATCH] Disable pylint's `protected-access` warning. Protected access is required for AnsibleModule. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index cbf283d1..aa45b22b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,6 +37,7 @@ disable = missing-class-docstring, missing-function-docstring, wrong-import-position, + protected-access, duplicate-code, broad-except, too-many-branches, -- GitLab