Spaces:
Sleeping
Sleeping
File size: 175 Bytes
63a6397 | 1 2 3 4 5 6 7 8 | import sys
from pathlib import Path
PACKAGE_PARENT = Path(__file__).resolve().parents[2]
if str(PACKAGE_PARENT) not in sys.path:
sys.path.insert(0, str(PACKAGE_PARENT))
|