style: fix E501 line length in model pull --engine option

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jon Saad-Falcon
2026-03-24 18:24:07 -07:00
co-authored by Claude Opus 4.6
parent 02bc36c1f8
commit d9faa4621e
+3 -1
View File
@@ -219,7 +219,9 @@ def hf_download(repo: str, filename: str | None, console: Console) -> bool:
@model.command()
@click.argument("model_name")
@click.option("--engine", default=None, help="Engine to download for (ollama, llamacpp, mlx).")
@click.option(
"--engine", default=None, help="Engine to download for."
)
def pull(model_name: str, engine: str | None) -> None:
"""Download a model."""
console = Console()