def deserialize_ndjson()

in core/util.py [0:0]


def deserialize_ndjson(file):
    import json

    return [json.loads(line) for line in file]