From 6f8f623229b85c9738fa3bbd065af6b6f8bea28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 16 Dec 2025 13:49:01 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Fix=20Typer=20command=20for=20CI?= =?UTF-8?q?=20LLM=20translations?= 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()