fix: Remove excess logging
All checks were successful
Build Docker / BuildImage (push) Successful in 40s

This commit is contained in:
Nathan Woodburn 2024-09-18 11:27:54 +10:00
parent 66aa987013
commit 3c85ce105f
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -222,7 +222,6 @@ def check_dot(ip: str) -> bool:
response = dns.query.tls( response = dns.query.tls(
q, ip, timeout=5, port=853, server_hostname="hnsdoh.com" q, ip, timeout=5, port=853, server_hostname="hnsdoh.com"
) )
print(response, flush=True)
if response.rcode() == dns.rcode.NOERROR: if response.rcode() == dns.rcode.NOERROR:
for rrset in response.answer: for rrset in response.answer:
for rr in rrset: for rr in rrset: