summaryrefslogtreecommitdiff
path: root/dns/node.py
diff options
context:
space:
mode:
authorBrian Wellington <bwelling@xbill.org>2020-06-03 15:56:58 -0700
committerBrian Wellington <bwelling@xbill.org>2020-06-03 15:56:58 -0700
commitcc55d17f5478751da21a7b325b2b46e8d94d8ffb (patch)
treecfe1f182855d91fef11be31e4f4b77eeb214790d /dns/node.py
parent8643c7d660fcc3bf620b085c2e483d1419408f96 (diff)
downloaddnspython-cc55d17f5478751da21a7b325b2b46e8d94d8ffb.tar.gz
Minor Python 3 cleanups.
Classes inherit from object by default; there's no need to explicitly include this. Replace super(Foo, self) with super().
Diffstat (limited to 'dns/node.py')
-rw-r--r--dns/node.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/node.py b/dns/node.py
index 6ac79fd..1425bbc 100644
--- a/dns/node.py
+++ b/dns/node.py
@@ -24,7 +24,7 @@ import dns.rdatatype
import dns.renderer
-class Node(object):
+class Node:
"""A Node is a set of rdatasets."""