diff options
| author | Brian Wellington <bwelling@xbill.org> | 2020-06-03 15:56:58 -0700 |
|---|---|---|
| committer | Brian Wellington <bwelling@xbill.org> | 2020-06-03 15:56:58 -0700 |
| commit | cc55d17f5478751da21a7b325b2b46e8d94d8ffb (patch) | |
| tree | cfe1f182855d91fef11be31e4f4b77eeb214790d /dns/renderer.py | |
| parent | 8643c7d660fcc3bf620b085c2e483d1419408f96 (diff) | |
| download | dnspython-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.py | 2 |
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} |
