修复tts_voice_plugin/plugin.py117行的((

This commit is contained in:
LuiKlee
2025-10-10 10:38:04 +08:00
committed by GitHub
parent 4b960dba18
commit 9f8a5c9612

View File

@@ -114,7 +114,7 @@ class TTSVoicePlugin(BasePlugin):
"""
components = []
if self.get_config("components.action_enabled", True):
components.appendTTSVoiceAction.get_action_info(), TTSVoiceAction))
components.append((TTSVoiceAction.get_action_info(), TTSVoiceAction))
if self.get_config("components.command_enabled", True):
components.append((TTSVoiceCommand.get_plus_command_info(), TTSVoiceCommand))
return components