summaryrefslogtreecommitdiff
path: root/dns/renderer.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/renderer.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/renderer.py')
-rw-r--r--dns/renderer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dns/renderer.py b/dns/renderer.py
index 02a9e3d..27d96a6 100644
--- a/dns/renderer.py
+++ b/dns/renderer.py
@@ -32,7 +32,7 @@ AUTHORITY = 2
ADDITIONAL = 3
-class Renderer(object):
+class Renderer:
"""Helper class for building DNS wire-format messages.
Most applications can use the higher-level L{dns.message.Message}