From da7338137b798e3ace34de15ed12f76ec3cf3888 Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Thu, 21 Oct 2021 21:08:47 +0200 Subject: [PATCH] Add ignore for python 3.6 type check --- 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 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,