From cc55d17f5478751da21a7b325b2b46e8d94d8ffb Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Wed, 3 Jun 2020 15:56:58 -0700 Subject: Minor Python 3 cleanups. Classes inherit from object by default; there's no need to explicitly include this. Replace super(Foo, self) with super(). --- dns/node.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dns/node.py') 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.""" -- cgit v1.2.1