mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
pylint: Skip unused-private-member for property case
See https://github.com/PyCQA/pylint/issues/4756 for details Fixes: https://pagure.io/freeipa/issue/9117 Signed-off-by: Stanislav Levin <slev@altlinux.org> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
committed by
Rob Crittenden
parent
d90f4536e6
commit
cd2739bb0c
@@ -429,7 +429,7 @@ class Command(HasParam):
|
||||
api_version = API_VERSION
|
||||
|
||||
@classmethod
|
||||
def __topic_getter(cls):
|
||||
def __topic_getter(cls): # pylint: disable=unused-private-member, #4756
|
||||
return cls.__module__.rpartition('.')[2]
|
||||
|
||||
topic = classproperty(__topic_getter)
|
||||
|
||||
Reference in New Issue
Block a user