from utils import add_new_eval import sys assert len(sys.argv) == 2, "Usage: python script.py " input_file_path = sys.argv[1] with open(input_file_path, 'r') as file: add_new_eval(file)