This commit is contained in:
ShiXui 2022-10-06 16:32:51 +08:00
parent f4365dd07e
commit ef0c4848b2
2 changed files with 11 additions and 1 deletions

10
.gitignore vendored
View File

@ -1,2 +1,12 @@
/setup.py /setup.py
.vscode/settings.json .vscode/settings.json
build/lib/nonebot_plugin_dialectlist/__init__.py
build/lib/nonebot_plugin_dialectlist/config.py
build/lib/nonebot_plugin_dialectlist/function.py
dist/nonebot-plugin-dialectlist-1.3.2.tar.gz
nonebot_plugin_dialectlist.egg-info/dependency_links.txt
nonebot_plugin_dialectlist.egg-info/PKG-INFO
nonebot_plugin_dialectlist.egg-info/requires.txt
nonebot_plugin_dialectlist.egg-info/SOURCES.txt
nonebot_plugin_dialectlist.egg-info/top_level.txt
.gitignore

View File

@ -10,7 +10,7 @@ from pygal.style import Style
from nonebot.log import logger from nonebot.log import logger
from nonebot.adapters import Bot from nonebot.adapters import Bot
from nonebot.adapters.onebot.v11 import Message,MessageSegment from nonebot.adapters.onebot.v11 import Message,MessageSegment
from nonebot.adapters.onebot.v11.exception import ActionFailed from nonebot.exception import ActionFailed
from nonebot_plugin_datastore import create_session from nonebot_plugin_datastore import create_session
from nonebot_plugin_chatrecorder.model import MessageRecord from nonebot_plugin_chatrecorder.model import MessageRecord