def _serialize_sets()

in etl/utils.py [0:0]


def _serialize_sets(obj):
    if isinstance(obj, set):
        return list(obj)
    return obj