From 398704c8b6e22c8cc56f0ced4b53705966815edc Mon Sep 17 00:00:00 2001 From: lufton Date: Thu, 2 May 2019 23:46:54 +0300 Subject: [PATCH] Fixed some ci/circleci: pylint errors --- 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 4259c0de0e1..205841e78db 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__)