mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 03:11:55 +02:00
Update to Pylint 1.9.4 and corrections
This commit is contained in:
+2
-3
@@ -110,7 +110,6 @@ class AccountMemoryStorage(interfaces.AccountStorage):
|
||||
return list(six.itervalues(self.accounts))
|
||||
|
||||
def save(self, account, client):
|
||||
# pylint: disable=unused-argument
|
||||
if account.id in self.accounts:
|
||||
logger.debug("Overwriting account: %s", account.id)
|
||||
self.accounts[account.id] = account
|
||||
@@ -244,8 +243,8 @@ class AccountFileStorage(interfaces.AccountStorage):
|
||||
def load(self, account_id):
|
||||
return self._load_for_server_path(account_id, self.config.server_path)
|
||||
|
||||
def save(self, account, acme):
|
||||
self._save(account, acme, regr_only=False)
|
||||
def save(self, account, client):
|
||||
self._save(account, client, regr_only=False)
|
||||
|
||||
def save_regr(self, account, acme):
|
||||
"""Save the registration resource.
|
||||
|
||||
Reference in New Issue
Block a user