summaryrefslogtreecommitdiff
path: root/dns/rdtypes/ANY/RT.py
diff options
context:
space:
mode:
authorBob Halley <halley@dnspython.org>2020-08-19 05:30:30 -0700
committerBob Halley <halley@dnspython.org>2020-08-19 05:30:30 -0700
commitbee23ec15fdde8f0303b0a3699669599c5abf8cb (patch)
tree4163adbd42903cff6db95083712b0874c251879e /dns/rdtypes/ANY/RT.py
parent04d65197c72930fbc2857e7384418d6f045f7aa0 (diff)
downloaddnspython-more-immut.tar.gz
make name and rdata use the immutable decoratormore-immut
Diffstat (limited to 'dns/rdtypes/ANY/RT.py')
-rw-r--r--dns/rdtypes/ANY/RT.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/dns/rdtypes/ANY/RT.py b/dns/rdtypes/ANY/RT.py
index d0feb79..8d9c6bd 100644
--- a/dns/rdtypes/ANY/RT.py
+++ b/dns/rdtypes/ANY/RT.py
@@ -16,8 +16,10 @@
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
import dns.rdtypes.mxbase
+import dns.immutable
+@dns.immutable.immutable
class RT(dns.rdtypes.mxbase.UncompressedDowncasingMX):
"""RT record"""