From 43d12adce077ac59caab4d87763fcfcf80c2d1f5 Mon Sep 17 00:00:00 2001 From: lufton Date: Fri, 3 May 2019 09:23:50 +0300 Subject: [PATCH] Fixed import order --- homeassistant/components/google_cloud_tts/tts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/google_cloud_tts/tts.py b/homeassistant/components/google_cloud_tts/tts.py index dd38f337e13..9817e26fa8e 100644 --- a/homeassistant/components/google_cloud_tts/tts.py +++ b/homeassistant/components/google_cloud_tts/tts.py @@ -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__)