From: Bob Halley Date: Sat, 17 Jan 2026 16:11:37 +0000 (-0800) Subject: ty 0.0.12 lint X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b815db08f015ee5c653883364fdcfd80be8ec8ce;p=thirdparty%2Fdnspython.git ty 0.0.12 lint --- diff --git a/dns/rdataset.py b/dns/rdataset.py index 0c061cd3..dda5bb50 100644 --- a/dns/rdataset.py +++ b/dns/rdataset.py @@ -370,7 +370,7 @@ class ImmutableRdataset(Rdataset): # lgtm[py/missing-equals] def update_ttl(self, ttl): raise TypeError("immutable") - def add(self, rd, ttl=None): # type: ignore + def add(self, rd, ttl=None): # pyright: ignore raise TypeError("immutable") def union_update(self, other):