src/guclimate/recipes/cli.py [22:30]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    path: Annotated[
        Path,
        typer.Argument(
            help="Path to recipe file, e.g. ./my_recipe.yaml",
            callback=validateInputPath,
        ),
    ],
):
    with open(path, "r") as file:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/guclimate/recipes/cli.py [41:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    path: Annotated[
        Path,
        typer.Argument(
            help="Path to recipe file, e.g. ./my_recipe.yaml",
            callback=validateInputPath,
        ),
    ],
):
    with open(path, "r") as file:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



