From a9c1c81a4669c71bf3c629b93ffce4b6018b36ca Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Jan 10 2023 07:30:58 +0000 Subject: pylint: disable redefined-slots-in-subclass Related: https://pagure.io/freeipa/issue/9278 Signed-off-by: Florence Blanc-Renaud Reviewed-By: Stanislav Levin --- diff --git a/ipalib/util.py b/ipalib/util.py index 0e3b7e0..ef8e3ad 100644 --- a/ipalib/util.py +++ b/ipalib/util.py @@ -1082,7 +1082,7 @@ class classproperty: class classobjectproperty(classproperty): # A class property that also passes the object to the getter # obj is None for class objects and 'self' for instance objects. - __slots__ = ('__doc__',) + __slots__ = ('__doc__',) # pylint: disable=redefined-slots-in-subclass def __get__(self, obj, obj_type): if self.fget is not None: