zhifu gao
2023-01-09 e5819185cfb4b2cc8541c51274934e529fb3ac88
funasr/utils/postprocess_utils.py
@@ -5,7 +5,7 @@
def isChinese(ch: str):
    if '\u4e00' <= ch <= '\u9fff':
    if '\u4e00' <= ch <= '\u9fff' or '\u0030' <= ch <= '\u0039':
        return True
    return False