mirror of https://github.com/Mai-with-u/MaiBot.git
add typing
parent
de68a6a8ee
commit
95a025b699
|
|
@ -1,6 +1,7 @@
|
||||||
# src/plugins/chat/message_sender.py
|
# src/plugins/chat/message_sender.py
|
||||||
import asyncio
|
import asyncio
|
||||||
import time
|
import time
|
||||||
|
from asyncio import Task
|
||||||
from typing import Union
|
from typing import Union
|
||||||
|
|
||||||
# from ...common.database import db # 数据库依赖似乎不需要了,注释掉
|
# from ...common.database import db # 数据库依赖似乎不需要了,注释掉
|
||||||
|
|
@ -146,7 +147,7 @@ class MessageManager:
|
||||||
"""管理所有聊天流的消息容器 (不再是单例)"""
|
"""管理所有聊天流的消息容器 (不再是单例)"""
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self._processor_task = None
|
self._processor_task: Task | None = None
|
||||||
self.containers: dict[str, MessageContainer] = {}
|
self.containers: dict[str, MessageContainer] = {}
|
||||||
self.storage = MessageStorage() # 添加 storage 实例
|
self.storage = MessageStorage() # 添加 storage 实例
|
||||||
self._running = True # 处理器运行状态
|
self._running = True # 处理器运行状态
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue