Unhappy linter is unhappy

This commit is contained in:
Alexandre Aubin 2021-09-29 22:29:28 +02:00
parent df0cdd483d
commit 55598151c0

View file

@ -881,9 +881,9 @@ def _check_domain_is_ready_for_ACME(domain):
# Fallback to wildcard in case no result yet for the DNS name? # Fallback to wildcard in case no result yet for the DNS name?
if not A_record_status: if not A_record_status:
A_record_status = dnsrecords.get("data").get(f"A:*") A_record_status = dnsrecords.get("data").get("A:*")
if not AAAA_record_status: if not AAAA_record_status:
AAAA_record_status = dnsrecords.get("data").get(f"AAAA:*") AAAA_record_status = dnsrecords.get("data").get("AAAA:*")
if ( if (
not httpreachable not httpreachable