Files
Vijay Janapa Reddi 41707f6451 Organize fmt notation audit tools under book/tools/audit/fmt.
Centralize spurious-.0 detection, batch HTML render, and chapter workflow docs so vol1/vol2 audits reuse one lane with backward-compatible wrappers at the old paths.
2026-05-24 11:57:45 -04:00

13 lines
339 B
Python

#!/usr/bin/env python3
"""Backward-compat wrapper — use ``book/tools/audit/fmt/fix_precision.py``."""
from __future__ import annotations
import runpy
import sys
from pathlib import Path
_TARGET = Path(__file__).resolve().parent / "fmt" / "fix_precision.py"
sys.argv[0] = str(_TARGET)
runpy.run_path(str(_TARGET), run_name="__main__")