From 09040620152c8cb4e0d6fe4bd7bed73551ed22d6 Mon Sep 17 00:00:00 2001 From: Joona Hoikkala Date: Fri, 24 Jan 2020 16:01:50 +0200 Subject: [PATCH] Add link to mypy issue in super() init call --- certbot-apache/certbot_apache/_internal/prefetch_ocsp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/certbot-apache/certbot_apache/_internal/prefetch_ocsp.py b/certbot-apache/certbot_apache/_internal/prefetch_ocsp.py index 185e11674..b1e3a1d8d 100644 --- a/certbot-apache/certbot_apache/_internal/prefetch_ocsp.py +++ b/certbot-apache/certbot_apache/_internal/prefetch_ocsp.py @@ -22,9 +22,9 @@ class OCSPPrefetchMixin(object): def __init__(self, *args, **kwargs): self._ocsp_prefetch = {} # type: Dict[str, str] self._ocsp_dbm_bsddb = False - # This is required because of python super() call chain - # mypy isn't able to figure the chain out and needs to be - # disabled for this line. + # This is required because of python super() call chain. + # Additionally, mypy isn't able to figure the chain out and needs to be + # disabled for this line. See https://github.com/python/mypy/issues/5887 super(OCSPPrefetchMixin, self).__init__(*args, **kwargs) # type: ignore def _ensure_ocsp_dirs(self):