moved imports to top level (#27496)

This commit is contained in:
bouni 2019-10-12 21:52:19 +02:00 committed by Paulus Schoutsen
parent 468e6c30b3
commit 2c8e24eb14
2 changed files with 4 additions and 4 deletions

View File

@ -3,6 +3,8 @@ import asyncio
import logging
from collections import OrderedDict
import aiobotocore
import voluptuous as vol
from homeassistant import config_entries
@ -151,7 +153,6 @@ async def async_setup_entry(hass, entry):
async def _validate_aws_credentials(hass, credential):
"""Validate AWS credential config."""
import aiobotocore
aws_config = credential.copy()
del aws_config[CONF_NAME]

View File

@ -4,6 +4,8 @@ import base64
import json
import logging
import aiobotocore
from homeassistant.components.notify import (
ATTR_TARGET,
ATTR_TITLE,
@ -26,7 +28,6 @@ _LOGGER = logging.getLogger(__name__)
async def get_available_regions(hass, service):
"""Get available regions for a service."""
import aiobotocore
session = aiobotocore.get_session()
# get_available_regions is not a coroutine since it does not perform
@ -41,8 +42,6 @@ async def async_get_service(hass, config, discovery_info=None):
_LOGGER.error("Please config aws notify platform in aws component")
return None
import aiobotocore
session = None
conf = discovery_info