Skip to content

Commit a6457e3

Browse files
committed
fix key error
1 parent 637f6a7 commit a6457e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

OpenHowNet/Standards.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, use_sim=False):
3333
for key in word_dict:
3434
now_dict = word_dict[key]
3535
en_word = now_dict["en_word"].strip()
36-
zh_word = now_dict["zh_word"].strip()
36+
zh_word = now_dict["ch_word"].strip()
3737
if en_word not in self.en_map:
3838
self.en_map[en_word] = list()
3939
self.en_map[en_word].append(now_dict)

0 commit comments

Comments
 (0)