Ignore words with length less than or equal to 2

Bug518-Hui
Lan Hui 2024-09-02 15:24:19 +08:00
parent 172727f95f
commit 38206271c6
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ def user_mark_word(username):
lst = []
lst2 = []
for word in request.form.getlist('marked'):
if not word in pickle_idea2.exclusion_lst:
if not word in pickle_idea2.exclusion_lst and len(word) > 2:
lst.append((word, [get_time()]))
lst2.append(word)
d = pickle_idea2.merge_frequency(lst, lst_history)