Fix typo: change "未就续" to "未就绪" in module status messages (#4804)

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: jxxghp <jxxghp@live.cn>
This commit is contained in:
jxxghp
2025-08-22 07:05:16 +08:00
committed by GitHub
parent 1f40663b90
commit b9521cb3a9
5 changed files with 5 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ class SlackModule(_ModuleBase, _MessageBase[Slack]):
for name, client in self.get_instances().items():
state = client.get_state()
if not state:
return False, f"Slack {name} 未就"
return False, f"Slack {name} 未就"
return True, ""
def init_setting(self) -> Tuple[str, Union[str, bool]]: