From ff8473d82f4d1818270ea52a1f4001d025feea82 Mon Sep 17 00:00:00 2001 From: trtllm-agent <296075020+trtllm-agent@users.noreply.github.com> Date: Fri, 3 Jul 2026 05:38:25 -0700 Subject: [PATCH] [nvbugs/6411931][fix] Add 'fo' (Faroese ISO-639-1 code) to codespell ignore list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Release-Check codespell hook flagged triton_backend/all_models/whisper/whisper_bls/1/tokenizer.py:101 — '"fo": "faroese",' — as a typo (fo -> of/for/to/do/go). This is a false positive: 'fo' is the ISO-639-1 language code for Faroese in OpenAI Whisper's vendored LANGUAGES dict. Signed-off-by: trtllm-agent <296075020+trtllm-agent@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 51c939b9a4d6..709926f02560 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ column_limit = 80 [tool.codespell] skip = ".git,3rdparty,triton_kernels,tests/integration/test_input_files**,**.jsonl,**.json" -ignore-words-list = "rouge,inout,atleast,strat,nd,subtile,thrid,improbe,NotIn,te,iteract,anythin,tru,Tracin,vEw,dOut,indext,asend,medias" +ignore-words-list = "rouge,inout,atleast,strat,nd,subtile,thrid,improbe,NotIn,te,iteract,anythin,tru,Tracin,vEw,dOut,indext,asend,medias,fo" [tool.autoflake] in-place = true