Skip to content

Commit

Permalink
[hotfix] fixing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jun 10, 2016
1 parent 2644dd1 commit 2f60801
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions caravel/utils.py
Expand Up @@ -5,6 +5,7 @@
from __future__ import unicode_literals

from datetime import datetime
import decimal
import functools
import json
import logging
Expand Down Expand Up @@ -229,6 +230,8 @@ def base_json_conv(obj):
return int(obj)
elif isinstance(obj, set):
return list(obj)
elif isinstance(obj, decimal.Decimal):
return float(obj)


def json_iso_dttm_ser(obj):
Expand Down

0 comments on commit 2f60801

Please sign in to comment.