7 lines
149 B
Python
7 lines
149 B
Python
|
|
import sys
|
||
|
|
from pathlib import Path
|
||
|
|
|
||
|
|
_ROOT = Path(__file__).resolve().parent
|
||
|
|
if str(_ROOT) not in sys.path:
|
||
|
|
sys.path.insert(0, str(_ROOT))
|