From 097815ca251f3a59b1e5aad585c7f918e2a5f82e Mon Sep 17 00:00:00 2001 From: ontocord Date: Sun, 6 Mar 2022 01:14:17 -0500 Subject: [PATCH] Update cjk.py --- cjk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cjk.py b/cjk.py index 000270f..cb0f8e5 100644 --- a/cjk.py +++ b/cjk.py @@ -14,5 +14,5 @@ def cjk_detect(texts): return "th" return None -def is_lang_cjk(lang): +def lang_is_cjk(lang): return lang in {'zh', 'zh-classical', 'zh-min-nan', 'zh-yue', 'ko', 'ja', 'th'}