From 38206271c6c01f64e1024e11de6af3660005a212 Mon Sep 17 00:00:00 2001 From: Lan Hui <1348141770@qq.com> Date: Mon, 2 Sep 2024 15:24:19 +0800 Subject: [PATCH] Ignore words with length less than or equal to 2 --- app/user_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/user_service.py b/app/user_service.py index 24e8998..e66857c 100644 --- a/app/user_service.py +++ b/app/user_service.py @@ -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)