def join_arg_path()

in chz/blueprint/_argmap.py [0:0]


def join_arg_path(parent: str, child: str) -> str:
    if not parent:
        return child
    if child.startswith(".") or child == "":
        return parent + child
    return parent + "." + child