We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72bb4c5 commit c29a629Copy full SHA for c29a629
2 files changed
README.md
@@ -32,7 +32,7 @@ _✨ [Nonebot2](https://github.com/nonebot/nonebot2) 表情包制作插件 调
32
> 本插件自 v0.5.0 版本起与 rust 版 [meme-generator-rs](https://github.com/MemeCrafters/meme-generator-rs) 对接
33
>
34
> 之前的版本与 python 版 [meme-generator](https://github.com/MemeCrafters/meme-generator) 对接
35
->
+>
36
> 请注意区分!!!
37
38
### 安装
nonebot_plugin_memes_api/matchers/image_operations.py
@@ -199,7 +199,8 @@ async def _(matcher: Matcher):
199
await matcher.finish(
200
"简单图片操作,支持的操作:\n"
201
+ "\n".join(
202
- f"{i+1}、{'/'.join(command.keywords)}" for i, command in enumerate(commands)
+ f"{i + 1}、{'/'.join(command.keywords)}"
203
+ for i, command in enumerate(commands)
204
)
205
206
0 commit comments