Sort imports according to PEP8 for aws (#29704)
This commit is contained in:
parent
f9e9a5e4cb
commit
ea39d5b428
3 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,9 @@
|
|||
"""Support for Amazon Web Services (AWS)."""
|
||||
import asyncio
|
||||
import logging
|
||||
from collections import OrderedDict
|
||||
import logging
|
||||
|
||||
import aiobotocore
|
||||
|
||||
import voluptuous as vol
|
||||
|
||||
from homeassistant import config_entries
|
||||
|
|
|
@ -12,8 +12,9 @@ from homeassistant.components.notify import (
|
|||
ATTR_TITLE_DEFAULT,
|
||||
BaseNotificationService,
|
||||
)
|
||||
from homeassistant.const import CONF_PLATFORM, CONF_NAME
|
||||
from homeassistant.const import CONF_NAME, CONF_PLATFORM
|
||||
from homeassistant.helpers.json import JSONEncoder
|
||||
|
||||
from .const import (
|
||||
CONF_CONTEXT,
|
||||
CONF_CREDENTIAL_NAME,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
"""Tests for the aws component config and setup."""
|
||||
from asynctest import patch as async_patch, MagicMock, CoroutineMock
|
||||
from asynctest import CoroutineMock, MagicMock, patch as async_patch
|
||||
|
||||
from homeassistant.components import aws
|
||||
from homeassistant.setup import async_setup_component
|
||||
|
|
Loading…
Add table
Reference in a new issue