diff --git a/homeassistant/components/alexa/intent.py b/homeassistant/components/alexa/intent.py index f879b66268b..c04b493beec 100644 --- a/homeassistant/components/alexa/intent.py +++ b/homeassistant/components/alexa/intent.py @@ -40,6 +40,16 @@ def async_setup(hass): hass.http.register_view(AlexaIntentsView) +async def async_setup_intents(hass): + """ + Do intents setup. + + Right now this module does not expose any, but the intent component breaks + without it. + """ + pass # pylint: disable=unnecessary-pass + + class UnknownRequest(HomeAssistantError): """When an unknown Alexa request is passed in."""