mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
pylint: disable redefined-slots-in-subclass
Related: https://pagure.io/freeipa/issue/9278 Signed-off-by: Florence Blanc-Renaud <flo@redhat.com> Reviewed-By: Stanislav Levin <slev@altlinux.org>
This commit is contained in:
parent
12067297d8
commit
a9c1c81a46
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user