chore: strings lint cleanup (#3374)

This commit is contained in:
Andy Li
2025-07-18 09:20:45 -07:00
committed by GitHub
parent fd835492d8
commit 04e9f43220
43 changed files with 71 additions and 86 deletions

View File

@@ -228,7 +228,7 @@ def test_auto_summarize(server, default_user):
actor=default_user,
)
def summarize_message_exists(messages: List[Message]) -> bool:
def summarize_message_exists(messages: list[Message]) -> bool:
for message in messages:
if message.content[0].text and "The following is a summary of the previous" in message.content[0].text:
return True