👷 Fix Typer command for CI LLM translations (#14530)

This commit is contained in:
Sebastián Ramírez authored and GitHub committed 2025-12-16 12:53:28 +00:00
1 parent f9397e93b5
commit 5da1cb0792
1 file changed
+1 -1
+1 -1
View File
@@ -914,7 +914,7 @@ def list_all_removable() -> list[Path]:
@app.command()
def remove_removable(language: str) -> None:
def remove_removable(language: Annotated[str, typer.Option(envvar="LANGUAGE")]) -> None:
removable_paths = list_removable(language)
for path in removable_paths:
path.unlink()