(path)
| 18 | return path |
| 19 | |
| 20 | def exists_in_project_path(path): |
| 21 | return os.path.exists(assemble_project_path(path)) |
| 22 | |
| 23 | def get_project_root(): |
| 24 | path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
nothing calls this directly
no test coverage detected