Get the project root directory
()
| 2 | from typing import Union |
| 3 | |
| 4 | def get_project_root() -> str: |
| 5 | """Get the project root directory""" |
| 6 | return os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')) |
| 7 | |
| 8 | def assemble_project_path(path: str) -> str: |
| 9 | """Assemble a path relative to the project root directory |
no test coverage detected