Fixed import order

This commit is contained in:
lufton
2019-05-03 09:23:50 +03:00
parent 4b84ad42ff
commit 43d12adce0

View File

@@ -1,11 +1,11 @@
"""Support for the Google Cloud TTS service."""
from google.cloud import texttospeech
from homeassistant.components.tts import CONF_LANG, PLATFORM_SCHEMA, Provider
import logging
import os
import async_timeout
import asyncio
import async_timeout
import voluptuous as vol
from google.cloud import texttospeech
from homeassistant.components.tts import CONF_LANG, PLATFORM_SCHEMA, Provider
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)