mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
Fix lint
This commit is contained in:
parent
7943b4295d
commit
493f1d2999
1 changed files with 1 additions and 1 deletions
|
|
@ -658,7 +658,7 @@ class ClientV2(ClientBase):
|
|||
response = self._post(self.directory['newOrder'], order)
|
||||
body = messages.Order.from_json(response.json())
|
||||
authorizations = []
|
||||
for url in body.authorizations:
|
||||
for url in body.authorizations: # pylint: disable=not-an-iterable
|
||||
authorizations.append(self._authzr_from_response(self._post_as_get(url), uri=url))
|
||||
return messages.OrderResource(
|
||||
body=body,
|
||||
|
|
|
|||
Loading…
Reference in a new issue