删除插入lower

This commit is contained in:
RainSun 2021-01-08 12:10:42 +08:00
parent 2a27064442
commit 267b4ee000

View File

@ -58,8 +58,6 @@ def insertAccessToken(access_token):
# 插入新关键词
def insertKeyword(keyword):
# 插入新的关键词的时候,把关键词全部变成小写
keyword = keyword.lower()
try:
col('keyword').insert_one(keyword)
except Exception as e: