#!/usr/bin/env python3 """DEPRECATED -- superseded by scripts/sync_nav.py. Historically this script injected just the Healthcare column into the static pages, which caused the Services dropdown to drift (different sectors / badges / ordering on different pages). The header is now maintained in ONE place (site/src/partials/nav.html) and synced wholesale into every static page by scripts/sync_nav.py. This shim simply delegates to sync_nav.py so any existing automation that still calls inject_healthcare_nav.py keeps working. """ import runpy import sys from pathlib import Path if __name__ == "__main__": print("inject_healthcare_nav.py is deprecated; delegating to sync_nav.py", file=sys.stderr) target = Path(__file__).with_name("sync_nav.py") sys.argv = [str(target)] runpy.run_path(str(target), run_name="__main__")