How to configure mypy to ignore a stub file for a specific module? – Ubuntu
I installed a "dnspython" package with "pip install dnspython" under Ubuntu 22.10 and made a following short script: #!/usr/bin/env python3 import dns.zone import dns.query zone = dns.zone.Zone("example.net") dns.query.inbound_xfr("10.0.0.1", zone) for (name, ttl, rdata) in zone.iterate_rdatas("SOA"): serial_nr = rdata.serial When I…