[+] Add keywords

This commit is contained in:
Hykilpikonna
2021-11-24 10:27:22 -05:00
parent bba3858e8c
commit df02c0ba51
+1 -1
View File
@@ -237,7 +237,7 @@ def is_covid_related(text: str) -> bool:
keywords += ['新冠', '疫情', '感染', '疫苗', '隔离']
# Japanese
keywords += ['コロナ', '検疫']
keywords += ['コロナ', '検疫', '三密']
return any(k in text.lower() for k in keywords)