Sort imports according to PEP8 for components starting with "G" (#29767)

This commit is contained in:
Bas Nijholt 2019-12-09 14:17:36 +01:00 committed by Franck Nijhof
parent ca0fad2cbb
commit d58e6e924a
22 changed files with 80 additions and 82 deletions

View file

@ -1,15 +1,15 @@
"""Parse prices of a device from geizhals."""
import logging
from datetime import timedelta
import logging
from geizhals import Device, Geizhals
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA
import homeassistant.helpers.config_validation as cv
from homeassistant.util import Throttle
from homeassistant.helpers.entity import Entity
from homeassistant.const import CONF_NAME
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
from homeassistant.util import Throttle
_LOGGER = logging.getLogger(__name__)