From 42858754edaa7aa232aa8df90d9e8e05ca813c13 Mon Sep 17 00:00:00 2001 From: RogerSelwyn Date: Sun, 21 Jan 2024 09:24:13 +0000 Subject: [PATCH] fix: Fix error in sending event for new_todo https://github.com/RogerSelwyn/O365-HomeAssistant/issues/202 --- custom_components/o365/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/o365/const.py b/custom_components/o365/const.py index 77b2cb3..47cb0d2 100644 --- a/custom_components/o365/const.py +++ b/custom_components/o365/const.py @@ -140,7 +140,7 @@ class EventResponse(Enum): EVENT_HA_EVENT = "ha_event" EVENT_COMPLETED_TODO = "completed_todo" EVENT_DELETE_TODO = "delete_todo" -EVENT_NEW_TODO = "new_todok" +EVENT_NEW_TODO = "new_todo" EVENT_UNCOMPLETED_TODO = "uncompleted_todo" EVENT_UPDATE_TODO = "update_todo"