mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
delint
This commit is contained in:
parent
6ceaca4a9d
commit
2268dbf489
2 changed files with 1 additions and 2 deletions
|
|
@ -396,7 +396,7 @@ def register(config, unused_plugins):
|
|||
"required\n(hint: --email)")
|
||||
acc, acme = _determine_account(config)
|
||||
acme_client = client.Client(config, acc, None, None, acme=acme)
|
||||
data = acme_client.acme.update_registration(acc.regr.update(
|
||||
acme_client.acme.update_registration(acc.regr.update(
|
||||
body=acc.regr.body.update(contact=('mailto:' + config.email,))))
|
||||
# We rely on an exception to interrupt this process if it didn't work.
|
||||
reporter_util = zope.component.getUtility(interfaces.IReporter)
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ import mock
|
|||
import six
|
||||
from six.moves import reload_module # pylint: disable=import-error
|
||||
|
||||
from acme import errors as acme_errors
|
||||
from acme import jose
|
||||
|
||||
from certbot import account
|
||||
|
|
|
|||
Loading…
Reference in a new issue