Update astrbot/core/platform/sources/wechatpadpro/wechatpadpro_adapter.py

Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
This commit is contained in:
夏目侧耳
2025-05-15 19:09:56 +08:00
committed by GitHub
parent 1593bcb537
commit f70b8f0c10

View File

@@ -508,8 +508,3 @@ class WeChatPadProAdapter(Platform):
通过会话发送消息。
"""
logger.info(f"向会话 {session} 发送消息: {message_chain}")
# 在这里实现将 MessageChain 转换为 WeChatPadPro 消息格式并发送的逻辑
# 例如:
# message_text = "".join([comp.text for comp in message_chain if isinstance(comp, Plain)])
# await self.client.send_message(session.session_id, message_text)
pass # 待实现