去除初始化问题!

This commit is contained in:
liuwei
2025-03-20 15:59:12 +08:00
parent 68c9b314a9
commit 5009a48adf
2 changed files with 0 additions and 9 deletions

View File

@@ -39,10 +39,6 @@ class GroupAddPlugin(MessagePluginInterface):
def __init__(self):
super().__init__()
self.wcf = None
self.gbm = None
self.LOG = None
self.enable = True
def initialize(self, context: Dict[str, Any]) -> bool:
"""初始化插件"""

View File

@@ -42,11 +42,6 @@ class GroupAutoInvitePlugin(MessagePluginInterface):
super().__init__()
# Redis 中存储群组映射的前缀
self.mapping_prefix = "group:group_mapping:"
self.redis_pool = None
self.LOG = None
self.wcf = None
self.gbm = None
self.enable = True
self._commands = []
def initialize(self, context: Dict[str, Any]) -> bool: