12 lines
291 B
Python
Raw Normal View History

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