8 lines
162 B
Python
8 lines
162 B
Python
from __future__ import annotations
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
EXAMPLE_ROOT = Path(__file__).resolve().parents[1]
|
|
sys.path.insert(0, str(EXAMPLE_ROOT))
|