👷 Fix Typer command for CI LLM translations

This commit is contained in:
Sebastián Ramírez 2025-12-16 13:49:01 +01:00
parent f9397e93b5
commit 6f8f623229
1 changed files with 1 additions and 1 deletions

View File

@ -914,7 +914,7 @@ def list_all_removable() -> list[Path]:
@app.command() @app.command()
def remove_removable(language: str) -> None: def remove_removable(language: Annotated[str, typer.Option(envvar="LANGUAGE")]) -> None:
removable_paths = list_removable(language) removable_paths = list_removable(language)
for path in removable_paths: for path in removable_paths:
path.unlink() path.unlink()