def read_file()

in scripts/utils/file_functions.py [0:0]


def read_file(file_path: str) -> list[dict]:
    with open(file_path, "r") as f:
        data = json.load(f)
    return data