Skip to content

Commit 585d862

Browse files
committed
up
1 parent 60649bc commit 585d862

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

YetAnotherPicSearch/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from nonebot.plugin import PluginMetadata, inherit_supported_adapters, require
44

5+
require("nonebot_plugin_waiter")
56
require("nonebot_plugin_alconna")
67

78
from . import __main__ as __main__
@@ -10,14 +11,17 @@
1011

1112
load_search_func()
1213

13-
__version__ = "2.0.1"
14+
__version__ = "2.0.1.post1"
1415
__plugin_meta__ = PluginMetadata(
1516
name="YetAnotherPicSearch",
1617
description="基于 NoneBot2 及 PicImageSearch 的另一个 NoneBot 搜图插件",
1718
usage=f"使用指令 `{config.search_keyword} -h` 查看帮助",
1819
type="application",
1920
homepage="https://github.com/lgc-NB2Dev/YetAnotherPicSearch",
2021
config=ConfigModel,
21-
supported_adapters=inherit_supported_adapters("nonebot_plugin_alconna"),
22+
supported_adapters=inherit_supported_adapters(
23+
"nonebot_plugin_waiter",
24+
"nonebot_plugin_alconna",
25+
),
2226
extra={},
2327
)

0 commit comments

Comments
 (0)