7 lines
137 B
Python
Executable File
7 lines
137 B
Python
Executable File
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
def project_root() -> Path:
|
|
return Path(__file__).resolve().parents[2] |