diff --git a/certbot_dns_google_domains/dns_google_domains.py b/certbot_dns_google_domains/dns_google_domains.py index 8cd236d..05e30b2 100644 --- a/certbot_dns_google_domains/dns_google_domains.py +++ b/certbot_dns_google_domains/dns_google_domains.py @@ -52,7 +52,7 @@ class RotateChallengesRequest(DataClassJsonMixin): class AcmeChallengeSet(DataClassJsonMixin): dataclass_json_config = config(letter_case=LetterCase.CAMEL)[ "dataclasses_json"] - record: List[AcmeTxtRecord] + record: Optional[List[AcmeTxtRecord]] class GDSApi: diff --git a/pyproject.toml b/pyproject.toml index 49928a0..923c204 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "certbot-dns-google-domains" -version = "0.1.8" +version = "0.1.9" description = "Certbot DNS authenticator for Google Domains" authors = ["Amir Omidi "] license = "Apache 2.0"