💥 drop self_id call_api support

This commit is contained in:
yanyongyu 2021-05-24 16:49:27 +08:00
parent c82a4820f7
commit 918b375ece
2 changed files with 2 additions and 6 deletions

View File

@ -152,7 +152,6 @@ class Bot(abc.ABC):
:参数:
* ``api: str``: API 名称
* ``self_id: Optional[str]``: 指定调用 API 的机器人
* ``**data``: API 数据
:示例:
@ -176,11 +175,7 @@ class Bot(abc.ABC):
result = None
try:
if "self_id" in data and data["self_id"]:
bot = self.driver.bots[str(data["self_id"])]
result = await bot._call_api(api, **data)
else:
result = await self._call_api(api, **data)
result = await self._call_api(api, **data)
except Exception as e:
exception = e

View File

@ -10,6 +10,7 @@ sidebar: auto
- 修复日志输出模块名错误
- 修改 `Matcher` 属性 `module` 类型
- 新增 `Matcher` 属性 `plugin_name` `module_name` `module_prefix`
- 移除 `bot.call_api` 参数 `self_id` 切换机器人支持
## v2.0.0a13.post1