From 5a54f2e053dc0deda9f9ec456b2a4feb21ff683b Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Wed, 27 Oct 2021 09:48:32 +0200 Subject: [PATCH] chore(ci): fix pylint configuration for protected accesses - the check was disabled by default in python special functions closes #752 --- pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylintrc b/pylintrc index c85b6eb78..507be07ab 100644 --- a/pylintrc +++ b/pylintrc @@ -519,7 +519,7 @@ redefining-builtins-modules=six.moves,past.builtins,future.builtins,builtins,io [CLASSES] # Warn about protected attribute access inside special methods -check-protected-access-in-special-methods=no +check-protected-access-in-special-methods=yes # List of method names used to declare (i.e. assign) instance attributes. defining-attr-methods=__init__,