Fixed some ci/circleci: pylint errors

This commit is contained in:
lufton
2019-05-02 23:46:54 +03:00
parent 9069ca1f42
commit 398704c8b6

View File

@@ -1,11 +1,11 @@
"""Support for the Google Cloud TTS service.""" """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 logging
import os import os
import async_timeout
import asyncio import asyncio
import async_timeout
import voluptuous as vol 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 import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)