def validateInputPath()

in src/guclimate/recipes/cli.py [0:0]


def validateInputPath(path: str):
    if not os.path.exists(path):
        raise typer.BadParameter(f"Path does not exist: {path}")
    return path