From e4e5a50695fc9225223ea0bde2378d6307995204 Mon Sep 17 00:00:00 2001 From: Stanislav Levin Date: Fri, 18 Feb 2022 17:01:01 +0300 Subject: [PATCH] pylint: Fix unused-private-member Pylint 2.9.0 introduced new checker: > Emitted when a private member of a class is defined but not used Fixes: https://pagure.io/freeipa/issue/9117 Signed-off-by: Stanislav Levin Reviewed-By: Rob Crittenden --- ipaserver/install/custodiainstance.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ipaserver/install/custodiainstance.py b/ipaserver/install/custodiainstance.py index 9a26a6e38..3cd4cfe6b 100644 --- a/ipaserver/install/custodiainstance.py +++ b/ipaserver/install/custodiainstance.py @@ -303,9 +303,3 @@ class CustodiaInstance(SimpleServiceInstance): data = {'prefix': 'ca', 'list': certlist} self._get_keys(cacerts_file, cacerts_pwd, data) - - def __start(self): - super(CustodiaInstance, self).__start() - - def __enable(self): - super(CustodiaInstance, self).__enable()