Fix todo list delete item typo (#2032)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
Cyrill Raccaud 2024-01-07 17:38:38 +01:00 committed by GitHub
parent 0ec78d5b49
commit 1ca5c13195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ from homeassistant.components.todo import TodoListEntity
class MyTodoListEntity(TodoListEntity): class MyTodoListEntity(TodoListEntity):
async def async_delete_todo_items(self, uids: list[str]) -> None: 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."""
``` ```
### Update To-do items ### Update To-do items