From 5da1cb07927575ca3fa036f82fd220ca84510106 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 16 Dec 2025 04:53:28 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Fix=20Typer=20command=20for=20CI?= =?UTF-8?q?=20LLM=20translations=20(#14530)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/translate.py b/scripts/translate.py index 33a4bd6ef..764bc704e 100644 --- a/scripts/translate.py +++ b/scripts/translate.py @@ -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()