From 9dbea871b8a97f3f24f2f7489d89077d10dd9df4 Mon Sep 17 00:00:00 2001 From: Akirami <66513481+A-kirami@users.noreply.github.com> Date: Fri, 24 Jun 2022 10:51:06 +0800 Subject: [PATCH] :pencil2: fix type T_RunPostProcessor incorrect description (#1057) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: 修复 typing 中 T_RunPostProcessor 类型的注释描述不正确 --- nonebot/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonebot/typing.py b/nonebot/typing.py index d6d3d3b2..d6223fb9 100644 --- a/nonebot/typing.py +++ b/nonebot/typing.py @@ -104,7 +104,7 @@ T_RunPreProcessor = Callable[..., Union[Any, Awaitable[Any]]] - DefaultParam: 带有默认值的参数 """ T_RunPostProcessor = Callable[..., Union[Any, Awaitable[Any]]] -"""事件响应器运行前预处理函数 RunPostProcessor 类型 +"""事件响应器运行后后处理函数 RunPostProcessor 类型 依赖参数: