Browse Source

Merge 7804ab9f90 into e0ce459c96

pull/50/merge
Ondřej Slabý 8 years ago
committed by GitHub
parent
commit
b6655fcabd
  1. 2
      disco/util/hashmap.py

2
disco/util/hashmap.py

@ -11,7 +11,7 @@ class HashMap(dict):
return iter(self)
def items(self):
return six.iteritems(self)
return six.iteritems(super(HashMap, self))
def find(self, predicate):
if not callable(predicate):

Loading…
Cancel
Save