Initial commit: 2125_GCE project
This commit is contained in:
Regular → Executable
+6
-1
@@ -45,7 +45,12 @@ def load_all_supercharged(path: Optional[str] = None) -> None:
|
||||
|
||||
# Resolve path
|
||||
if path is None:
|
||||
path = "/mnt/d/users/dave/Downloads/LEDONOVA/LedoGlyph600.json"
|
||||
# Try local path first, then fallback
|
||||
local_path = Path(__file__).parent / "supercharged_glyphs.json"
|
||||
if local_path.exists():
|
||||
path = str(local_path)
|
||||
else:
|
||||
path = "/mnt/d/users/dave/Downloads/LEDONOVA/LedoGlyph600.json"
|
||||
|
||||
filepath = Path(path)
|
||||
if not filepath.exists():
|
||||
|
||||
Reference in New Issue
Block a user