🎨 Apply black formatting

This commit is contained in:
2024-12-13 18:53:47 +08:00
parent 6f1817726e
commit 849cc24968
4 changed files with 19 additions and 18 deletions

View File

@ -67,7 +67,7 @@ async def introduce(msg: str):
from . import mg_search
context = await mg_search.search(msg, 1)
keyword = re.search(r".*?\n", context, flags=re.DOTALL).group()[:-1] # type: ignore
keyword = re.search(r".*?\n", context, flags=re.DOTALL).group()[:-1] # type: ignore
logger.success(f'搜索完成, 打开"{keyword}"')
return await introduce(keyword)