main
py 8 lines 173 Bytes
Raw
1 import sys
2 from pathlib import Path
3
4
5 a0_root = str(Path(__file__).resolve().parents[3])
6 while a0_root in sys.path:
7 sys.path.remove(a0_root)
8 sys.path.insert(0, a0_root)