SQL-Eval / utils /filesys_utils.py
Jun-Min Lee
init
7b45c3b
Raw
History Blame Contribute Delete
147 Bytes
import json
from typing import Any
def json_load(path: str) -> Any:
with open(path, "r", encoding="utf-8") as f:
return json.load(f)