Fix local_todo typo (#107454)

local todo typo
This commit is contained in:
Cyrill Raccaud 2024-01-07 14:20:37 +01:00 committed by GitHub
parent 840089b8ac
commit da8ce7bbf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)