summaryrefslogtreecommitdiff
path: root/kombu/utils/collections.py
diff options
context:
space:
mode:
Diffstat (limited to 'kombu/utils/collections.py')
-rw-r--r--kombu/utils/collections.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kombu/utils/collections.py b/kombu/utils/collections.py
index 0ee27399..77781047 100644
--- a/kombu/utils/collections.py
+++ b/kombu/utils/collections.py
@@ -33,10 +33,10 @@ class EqualityDict(dict):
h = eqhash(key)
if h not in self:
return self.__missing__(key)
- return dict.__getitem__(self, h)
+ return super().__getitem__(h)
def __setitem__(self, key, value):
- return dict.__setitem__(self, eqhash(key), value)
+ return super().__setitem__(eqhash(key), value)
def __delitem__(self, key):
- return dict.__delitem__(self, eqhash(key))
+ return super().__delitem__(eqhash(key))