in emoclassifiers/io_utils.py [0:0]
def load_json(path: str) -> dict: """ Load a JSON file. """ with open(path, 'r') as f: return json.load(f)