12 lines
287 B
Python
Raw Normal View History

#!/usr/bin/env python3
"""Shim: add src/ to sys.path, then run pd.verify:main."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src"))
from pd.verify import main # noqa: E402
if __name__ == "__main__":
raise SystemExit(main())