Change from bug359-zhangkeli

Alpha-snapshot20230425
Hui Lan 2023-04-25 08:40:26 +08:00
parent 43c719b6b2
commit 58d7349afe
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ def save_frequency_to_pickle(d, pickle_fname):
d2 = {}
for k in d:
if not k in exclusion_lst and not k.isnumeric() and not len(k) < 2:
d2[k] = list(sorted(set(d[k])))
d2[k] = list(sorted(d[k])) # 原先这里是d2[k] = list(sorted(set(d[k])))
pickle.dump(d2, f)
f.close()