7 lines
138 B
Python
7 lines
138 B
Python
from pathlib import Path
|
|
|
|
|
|
def get_project_root() -> Path:
|
|
"""Returns project root folder."""
|
|
return Path(__file__).parent.parent
|