mirror of
https://github.com/certbot/certbot.git
synced 2026-04-22 22:59:39 -04:00
fix a typo in gen_ss_cert type hint (#9089)
This commit is contained in:
parent
81d5d2b421
commit
b1edda8a65
1 changed files with 1 additions and 1 deletions
|
|
@ -348,7 +348,7 @@ def gen_ss_cert(key: crypto.PKey, domains: Optional[List[str]] = None,
|
|||
not_before: Optional[int] = None,
|
||||
validity: int = (7 * 24 * 60 * 60), force_san: bool = True,
|
||||
extensions: Optional[List[crypto.X509Extension]] = None,
|
||||
ips: Optional[List[Union[ipaddress.IPv4Address, ipaddress.IPv4Address]]] = None
|
||||
ips: Optional[List[Union[ipaddress.IPv4Address, ipaddress.IPv6Address]]] = None
|
||||
) -> crypto.X509:
|
||||
"""Generate new self-signed certificate.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue