def read_jsonl()

in grade_school_math/view_model_solutions.py [0:0]


def read_jsonl(path: str):
    with open(path) as fh:
        return [json.loads(line) for line in fh.readlines() if line]