mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 07:42:08 -04:00
Add link to mypy issue in super() init call
This commit is contained in:
parent
6cfc493a71
commit
0904062015
1 changed files with 3 additions and 3 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue