From: Sebastián Ramírez Date: Tue, 16 Dec 2025 12:53:28 +0000 (-0800) Subject: 👷 Fix Typer command for CI LLM translations (#14530) X-Git-Tag: 0.125.0~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5da1cb07927575ca3fa036f82fd220ca84510106;p=thirdparty%2Ffastapi%2Ffastapi.git 👷 Fix Typer command for CI LLM translations (#14530) --- diff --git a/scripts/translate.py b/scripts/translate.py index 33a4bd6ef7..764bc704ea 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()