File size: 160 Bytes
90d94ec
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from pathlib import Path
import sys


ROOT_DIR = Path(__file__).resolve().parents[1]
root = str(ROOT_DIR)
if root not in sys.path:
    sys.path.insert(0, root)