diff --git a/certbot/certbot/_internal/account.py b/certbot/certbot/_internal/account.py index 7d88dce09..62cf15137 100644 --- a/certbot/certbot/_internal/account.py +++ b/certbot/certbot/_internal/account.py @@ -63,7 +63,7 @@ class Account: try: hasher = hashlib.md5() except ValueError: - hasher = hashlib.new('md5', usedforsecurity=False) + hasher = hashlib.new('md5', usedforsecurity=False) # type: ignore hasher.update(self.key.key.public_key().public_bytes( encoding=serialization.Encoding.PEM,