#!/usr/bin/env python3 from __future__ import annotations import runpy from pathlib import Path SCRIPT_DIR = Path(__file__).resolve().parent UNIFIED_GENERATOR = SCRIPT_DIR / "generate_parallel_canonical_pages.py" def main() -> int: module_globals = runpy.run_path(str(UNIFIED_GENERATOR)) return int(module_globals["main"]()) if __name__ == "__main__": raise SystemExit(main())