Pointed script to new directory for data

This commit is contained in:
Lucas
2026-01-01 21:49:36 -08:00
parent 5773a3e8c3
commit 58bd427b28
7 changed files with 18 additions and 18 deletions

View File

@@ -2,7 +2,7 @@ import json
# Generates mainheader with dynamic project count
def generate_mainheader():
with open("core/data/dynamic/applications.json", "r", encoding="utf-8") as f:
with open("../../data/dynamic/applications.json", "r", encoding="utf-8") as f:
data = json.load(f)
project_count = len(data.get("applications", []))