From 6b11f2677fe6d4da653a85512ab73fa31c27214f Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Tue, 30 May 2017 12:31:07 -0700 Subject: [PATCH] fix one my lint that my invocation does not hit, but Travis does --- dns/namedict.py | 1 + 1 file changed, 1 insertion(+) 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 -- 2.47.3