From f8537a521080af9b06055e57626a7fa188f58eea Mon Sep 17 00:00:00 2001 From: Cleber Rosa Date: Mon, 14 Oct 2024 04:58:14 -0400 Subject: [PATCH] lint: remove protected-access / W0212 from configuration No occurrence of this warning was found in avocado/utils. Reference: https://pylint.pycqa.org/en/latest/user_guide/messages/warning/protected-access.html Signed-off-by: Cleber Rosa --- .pylintrc_utils | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.pylintrc_utils b/.pylintrc_utils index da9b8fa7e4..14914a1a74 100644 --- a/.pylintrc_utils +++ b/.pylintrc_utils @@ -118,8 +118,7 @@ disable=C0103, R1724, R1729, R1730, - R1732, - W0212 + R1732 [REPORTS]