From: Bob Halley Date: Tue, 30 May 2017 19:31:07 +0000 (-0700) Subject: fix one my lint that my invocation does not hit, but Travis does X-Git-Tag: v1.16.0~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6b11f2677fe6d4da653a85512ab73fa31c27214f;p=thirdparty%2Fdnspython.git fix one my lint that my invocation does not hit, but Travis does --- diff --git a/dns/namedict.py b/dns/namedict.py index 2215af71..97d4c9d0 100644 --- a/dns/namedict.py +++ b/dns/namedict.py @@ -40,6 +40,7 @@ class NameDict(collections.MutableMapping): __slots__ = ["max_depth", "max_depth_items", "__store"] def __init__(self, *args, **kwargs): + super(NameDict, self).__init__() self.__store = dict() #: the maximum depth of the keys that have ever been added self.max_depth = 0