File size: 147 Bytes
7b45c3b
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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)