Sort imports according to PEP8 for components starting with "W" (#29781)

This commit is contained in:
Bas Nijholt 2019-12-09 14:47:53 +01:00 committed by Franck Nijhof
parent 1ab1808307
commit fbf1836997
26 changed files with 77 additions and 82 deletions

View file

@ -1,21 +1,21 @@
"""Support for the World Air Quality Index service."""
import asyncio
import logging
from datetime import timedelta
import logging
import aiohttp
import voluptuous as vol
from waqiasync import WaqiClient
from homeassistant.exceptions import PlatformNotReady
import homeassistant.helpers.config_validation as cv
from homeassistant.const import (
ATTR_ATTRIBUTION,
ATTR_TIME,
ATTR_TEMPERATURE,
ATTR_TIME,
CONF_TOKEN,
)
from homeassistant.exceptions import PlatformNotReady
from homeassistant.helpers.aiohttp_client import async_get_clientsession
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.config_validation import PLATFORM_SCHEMA
from homeassistant.helpers.entity import Entity