Skip to content
Snippets Groups Projects
Commit 1b7f1ac0 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

force trigger gitlab pex pipeline

parent 2a5d7d07
No related branches found
No related tags found
1 merge request!1210force trigger gitlab pex pipeline
Pipeline #8221 failed
Pipeline: workspaces

#8223

    ......@@ -79,6 +79,12 @@ def get_carta_settings(location: str) -> Dict:
    def ensure_non_relative_path(location: str) -> Path:
    """
    ensure the path for CARTA is non-relative
    :param location: string representation of the path
    :return: Path
    """
    if location.startswith("."):
    return Path(location).resolve()
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment