mirror of
https://github.com/logos-blockchain/research.git
synced 2026-08-07 11:43:20 +00:00
12 lines
287 B
Python
12 lines
287 B
Python
|
|
#!/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())
|