From 27e8a6ee80c33b446e5b6ee929982eca074cd5f9 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Mon, 4 Mar 2019 13:18:16 -0800 Subject: [PATCH] Rename Google Assistant evenets (#21655) --- homeassistant/components/google_assistant/const.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/google_assistant/const.py b/homeassistant/components/google_assistant/const.py index b7d3a398ef2..220ed6dd58c 100644 --- a/homeassistant/components/google_assistant/const.py +++ b/homeassistant/components/google_assistant/const.py @@ -44,6 +44,6 @@ ERR_UNKNOWN_ERROR = 'unknownError' ERR_FUNCTION_NOT_SUPPORTED = 'functionNotSupported' # Event types -EVENT_COMMAND_RECEIVED = 'google_assistant_command_received' -EVENT_QUERY_RECEIVED = 'google_assistant_query_received' -EVENT_SYNC_RECEIVED = 'google_assistant_sync_received' +EVENT_COMMAND_RECEIVED = 'google_assistant_command' +EVENT_QUERY_RECEIVED = 'google_assistant_query' +EVENT_SYNC_RECEIVED = 'google_assistant_sync'