💥 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