Remove FrozenEncoder

This commit is contained in:
Erik Johnston 2014-12-16 13:38:38 +00:00
parent 8133cdcc88
commit 58168498b0

View File

@ -46,11 +46,3 @@ def unfreeze(o):
pass
return o
class FrozenEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, frozendict):
return dict(o)
return json.JSONEncoder(self, o)