From d01ea73d1be11d1b44f71461c25cecaf09891cd4 Mon Sep 17 00:00:00 2001 From: Lucas <169063936+mustbeperfect@users.noreply.github.com> Date: Thu, 15 Jan 2026 11:39:25 -0800 Subject: [PATCH] Updated directories in stats updator script to reflect working dir --- core/source/maintenance/stats_updator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/source/maintenance/stats_updator.py b/core/source/maintenance/stats_updator.py index 43be6e9..f3c6f6f 100644 --- a/core/source/maintenance/stats_updator.py +++ b/core/source/maintenance/stats_updator.py @@ -4,7 +4,7 @@ from datetime import datetime import requests -with open("core/data/dynamic/applications.json", "r") as f: +with open("data/dynamic/applications.json", "r") as f: data = json.load(f) GITHUB_TOKEN = os.getenv("GITHUB_TOKEN") @@ -62,7 +62,7 @@ def update_application_data(app): for app in data["applications"]: app = update_application_data(app) -with open("core/data/dynamic/applications.json", "w") as f: +with open("data/dynamic/applications.json", "w") as f: json.dump(data, f, indent=4) print("Updated application data successfully!")