refactor(models/events): 为所有事件类添加kw_only参数
统一为所有dataclass装饰的事件类添加kw_only=True参数,确保实例化时必须使用关键字参数
This commit is contained in:
@@ -30,7 +30,7 @@ class EventType:
|
||||
"""消息发送事件 (message_sent): 机器人自己发送消息的上报。"""
|
||||
|
||||
|
||||
@dataclass
|
||||
@dataclass(kw_only=True)
|
||||
class OneBotEvent(ABC):
|
||||
"""
|
||||
OneBot v11 事件的抽象基类。
|
||||
|
||||
Reference in New Issue
Block a user