bugfix
This commit is contained in:
parent
af62253bd7
commit
9e42e718d3
@ -31,6 +31,12 @@ class DictObject(dict):
|
||||
except KeyError:
|
||||
return None
|
||||
|
||||
def __reduce__(self):
|
||||
return super().__reduce__()
|
||||
|
||||
def __reduce_ex__(self, proto):
|
||||
return super().__reduce_ex__(proto)
|
||||
|
||||
def has(self, key):
|
||||
try:
|
||||
v = super().__getitem__(key)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user