add encoding (#1730)

This commit is contained in:
刘悦 2024-10-30 16:38:05 +08:00 committed by GitHub
parent 98cc47699c
commit 6d82050b9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,14 +127,14 @@ def get_dict():
def read_dict():
polyphonic_dict = {}
with open(PP_DICT_PATH) as f:
with open(PP_DICT_PATH,encoding="utf-8") as f:
line = f.readline()
while line:
key, value_str = line.split(':')
value = eval(value_str.strip())
polyphonic_dict[key.strip()] = value
line = f.readline()
with open(PP_FIX_DICT_PATH) as f:
with open(PP_FIX_DICT_PATH,encoding="utf-8") as f:
line = f.readline()
while line:
key, value_str = line.split(':')
@ -151,4 +151,4 @@ def correct_pronunciation(word,word_pinyins):
return word_pinyins
pp_dict = get_dict()
pp_dict = get_dict()