From da8ce7bbf38b1037b0e223ab62f98e71adc24b55 Mon Sep 17 00:00:00 2001 From: Cyrill Raccaud Date: Sun, 7 Jan 2024 14:20:37 +0100 Subject: [PATCH] Fix local_todo typo (#107454) local todo typo --- homeassistant/components/local_todo/todo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/local_todo/todo.py b/homeassistant/components/local_todo/todo.py index 99fb6dcebfa..e94206317d7 100644 --- a/homeassistant/components/local_todo/todo.py +++ b/homeassistant/components/local_todo/todo.py @@ -127,7 +127,7 @@ class LocalTodoListEntity(TodoListEntity): await self.async_update_ha_state(force_refresh=True) async def async_delete_todo_items(self, uids: list[str]) -> None: - """Add an item to the To-do list.""" + """Delete an item from the To-do list.""" store = TodoStore(self._calendar) for uid in uids: store.delete(uid)