mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 05:35:11 +02:00
Move imports to top for watson_tts (#29023)
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
"""Support for IBM Watson TTS integration."""
|
||||
import logging
|
||||
|
||||
from ibm_watson import TextToSpeechV1
|
||||
from ibm_cloud_sdk_core.authenticators import IAMAuthenticator
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant.components.tts import PLATFORM_SCHEMA, Provider
|
||||
@@ -92,8 +94,6 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
||||
|
||||
def get_engine(hass, config, discovery_info=None):
|
||||
"""Set up IBM Watson TTS component."""
|
||||
from ibm_watson import TextToSpeechV1
|
||||
from ibm_cloud_sdk_core.authenticators import IAMAuthenticator
|
||||
|
||||
authenticator = IAMAuthenticator(config[CONF_APIKEY])
|
||||
service = TextToSpeechV1(authenticator)
|
||||
|
Reference in New Issue
Block a user