From 8c0845a911c147a83efc0e5d7e928fa65821305e Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Wed, 17 Nov 2021 22:22:38 +0100 Subject: [PATCH] Fix mypy type --- certbot/certbot/_internal/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/_internal/account.py b/certbot/certbot/_internal/account.py index 70ee8ae06..bea5314a8 100644 --- a/certbot/certbot/_internal/account.py +++ b/certbot/certbot/_internal/account.py @@ -128,7 +128,7 @@ class RegistrationResourceWithNewAuthzrURI(messages.RegistrationResource): continue to write out this field for some time so older clients don't crash in that scenario. """ - new_authzr_uri = jose.Field('new_authzr_uri') + new_authzr_uri: str = jose.field('new_authzr_uri') class AccountFileStorage(interfaces.AccountStorage): """Accounts file storage.