From f11f755048b23a66962304e61691cab7cc639f29 Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Wed, 6 Dec 2017 16:52:36 +0000 Subject: Avoid pylint warning for "protected-access" This warning should be disabled in order to access protected methods during testing. Any access to protected methods done outside the testing classes, must be catched during the reviewing process. Change-Id: I2127b41edf704d0cb4f68b33d98705039e058d1a Signed-off-by: Rodolfo Alonso Hernandez --- .pylintrc | 1 + 1 file changed, 1 insertion(+) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index cc09592ab..f8a60a636 100644 --- a/.pylintrc +++ b/.pylintrc @@ -41,6 +41,7 @@ disable= no-init, non-parent-init-called, not-callable, + protected-access, redefined-builtin, redefined-outer-name, signature-differs, -- cgit 1.2.3-korg