diff --git a/nonebot/adapters/_bot.py b/nonebot/adapters/_bot.py index 4ac6b969..a9e9c51f 100644 --- a/nonebot/adapters/_bot.py +++ b/nonebot/adapters/_bot.py @@ -142,7 +142,7 @@ class Bot(abc.ABC): def on_calling_api(cls, func: T_CallingAPIHook) -> T_CallingAPIHook: """调用 api 预处理。 - 插槽函数参数: + 钩子函数参数: - bot: 当前 bot 对象 - api: 调用的 api 名称 @@ -155,7 +155,7 @@ class Bot(abc.ABC): def on_called_api(cls, func: T_CalledAPIHook) -> T_CalledAPIHook: """调用 api 后处理。 - 插槽函数参数: + 钩子函数参数: - bot: 当前 bot 对象 - exception: 调用 api 时发生的错误 diff --git a/nonebot/drivers/__init__.py b/nonebot/drivers/__init__.py index 40a29cac..69bc0e6d 100644 --- a/nonebot/drivers/__init__.py +++ b/nonebot/drivers/__init__.py @@ -116,7 +116,7 @@ class Driver(abc.ABC): def on_bot_connect(self, func: T_BotConnectionHook) -> T_BotConnectionHook: """装饰一个函数使他在 bot 连接成功时执行。 - 插槽函数参数: + 钩子函数参数: - bot: 当前连接上的 Bot 对象 """ @@ -126,7 +126,7 @@ class Driver(abc.ABC): def on_bot_disconnect(self, func: T_BotDisconnectionHook) -> T_BotDisconnectionHook: """装饰一个函数使他在 bot 连接断开时执行。 - 插槽函数参数: + 钩子函数参数: - bot: 当前连接上的 Bot 对象 """ diff --git a/nonebot/typing.py b/nonebot/typing.py index 12abedab..97115c2c 100644 --- a/nonebot/typing.py +++ b/nonebot/typing.py @@ -45,11 +45,11 @@ T_State = Dict[Any, Any] """事件处理状态 State 类型""" T_BotConnectionHook = Callable[["Bot"], Awaitable[None]] -"""Bot 连接建立时插槽函数""" +"""Bot 连接建立时钩子函数""" T_BotDisconnectionHook = Callable[["Bot"], Awaitable[None]] -"""Bot 连接断开时插槽函数""" +"""Bot 连接断开时钩子函数""" T_CallingAPIHook = Callable[["Bot", str, Dict[str, Any]], Awaitable[None]] -"""`bot.call_api` 插槽函数""" +"""`bot.call_api` 钩子函数""" T_CalledAPIHook = Callable[ ["Bot", Optional[Exception], str, Dict[str, Any], Any], Awaitable[None] ] diff --git a/poetry.lock b/poetry.lock index 97b8af48..bd1c8f0c 100644 --- a/poetry.lock +++ b/poetry.lock @@ -73,11 +73,11 @@ trio = ["trio (>=0.16)"] [[package]] name = "asgiref" -version = "3.4.1" +version = "3.5.0" description = "ASGI specs, helper code, and adapters" category = "main" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" [package.dependencies] typing-extensions = {version = "*", markers = "python_version < \"3.8\""} @@ -1054,7 +1054,7 @@ watchdog = ["watchdog"] [[package]] name = "win32-setctime" -version = "1.0.4" +version = "1.1.0" description = "A small Python utility to set file creation time on Windows" category = "main" optional = false @@ -1203,8 +1203,8 @@ anyio = [ {file = "anyio-3.5.0.tar.gz", hash = "sha256:a0aeffe2fb1fdf374a8e4b471444f0f3ac4fb9f5a5b542b48824475e0042a5a6"}, ] asgiref = [ - {file = "asgiref-3.4.1-py3-none-any.whl", hash = "sha256:ffc141aa908e6f175673e7b1b3b7af4fdb0ecb738fc5c8b88f69f055c2415214"}, - {file = "asgiref-3.4.1.tar.gz", hash = "sha256:4ef1ab46b484e3c706329cedeff284a5d40824200638503f5768edb6de7d58e9"}, + {file = "asgiref-3.5.0-py3-none-any.whl", hash = "sha256:88d59c13d634dcffe0510be048210188edd79aeccb6a6c9028cdad6f31d730a9"}, + {file = "asgiref-3.5.0.tar.gz", hash = "sha256:2f8abc20f7248433085eda803936d98992f1343ddb022065779f37c5da0181d0"}, ] async-asgi-testclient = [ {file = "async-asgi-testclient-1.4.9.tar.gz", hash = "sha256:ae507f44a53699611cff81ad548090dad24055fba02cce398e1ca9b84d1e1288"}, @@ -2060,8 +2060,8 @@ werkzeug = [ {file = "Werkzeug-2.0.2.tar.gz", hash = "sha256:aa2bb6fc8dee8d6c504c0ac1e7f5f7dc5810a9903e793b6f715a9f015bdadb9a"}, ] win32-setctime = [ - {file = "win32_setctime-1.0.4-py3-none-any.whl", hash = "sha256:7964234073ad9bc7a689ef2ebe6ce931976b644fe73fd50cf7729c996b7d8385"}, - {file = "win32_setctime-1.0.4.tar.gz", hash = "sha256:2b72b798fdc1d909fb3cc0d25e0be52a42f4848857e3588dd3947c6a18b42609"}, + {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, + {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, ] wsproto = [ {file = "wsproto-1.0.0-py3-none-any.whl", hash = "sha256:d8345d1808dd599b5ffb352c25a367adb6157e664e140dbecba3f9bc007edb9f"},