From 493f1d2999c9c4e58a73ecb81fccc71135345920 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Mon, 31 May 2021 23:23:36 +0200 Subject: [PATCH] Fix lint --- acme/acme/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme/acme/client.py b/acme/acme/client.py index 548c3d548..a8a01c8ed 100644 --- a/acme/acme/client.py +++ b/acme/acme/client.py @@ -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,