chore(todo): remove unused completion reminder counter (#3530)

This commit is contained in:
AochenShen99
2026-06-12 22:48:47 +08:00
committed by GitHub
parent a838546a2b
commit c002596ab4
2 changed files with 0 additions and 24 deletions
@@ -46,11 +46,6 @@ def _reminder_in_messages(messages: list[Any]) -> bool:
return False
def _completion_reminder_count(messages: list[Any]) -> int:
"""Return the number of todo_completion_reminder HumanMessages in *messages*."""
return sum(1 for msg in messages if isinstance(msg, HumanMessage) and getattr(msg, "name", None) == "todo_completion_reminder")
def _format_todos(todos: list[Todo]) -> str:
"""Format a list of Todo items into a human-readable string."""
lines: list[str] = []