Files
ClimbingBoardGPT/scripts/demo_generate_tb2.py
2026-05-21 22:21:26 -04:00

20 lines
465 B
Python

#!/usr/bin/env python3
"""Convenience wrapper: generate and visualize TB2 routes."""
from __future__ import annotations
import subprocess
import sys
from pathlib import Path
REPO_ROOT = Path(__file__).resolve().parents[1]
if __name__ == "__main__":
cmd = [
sys.executable,
str(REPO_ROOT / "scripts" / "demo_generate_and_visualize.py"),
"--board",
"tb2",
*sys.argv[1:],
]
raise SystemExit(subprocess.call(cmd))