From e275d0d7883b5d2e1d3310ff5c388c693fcec593 Mon Sep 17 00:00:00 2001 From: waterdrw Date: Wed, 22 Jan 2025 13:40:18 +0900 Subject: [PATCH] Update file paths to use relative references for project and scoring JSON files --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 0152db8..aceb547 100644 --- a/main.py +++ b/main.py @@ -2,8 +2,8 @@ from jsonpath_ng.ext import parse import json # 파일 경로 설정 -project_json_path = '/Users/waterdrw/Works/KAIT/Entry-Scoring/sample/제2410회 코딩활용능력 2급 B형 정답/project.json' -scoring_json_path = '/Users/waterdrw/Works/KAIT/Entry-Scoring/scoring.json' +project_json_path = './sample/제2410회 코딩활용능력 2급 B형 정답/project.json' +scoring_json_path = './scoring.json' # JSON 파일 읽기 def read_json(file_path):