Sort imports according to PEP8 for file (#29694)

This commit is contained in:
Bas Nijholt 2019-12-09 11:45:11 +01:00 committed by Franck Nijhof
parent a78fe25871
commit fa6b75f2c1
4 changed files with 8 additions and 9 deletions

View file

@ -1,12 +1,12 @@
"""Support for sensor value(s) stored in local files."""
import os
import logging
import os
import voluptuous as vol
import homeassistant.helpers.config_validation as cv
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import CONF_VALUE_TEMPLATE, CONF_NAME, CONF_UNIT_OF_MEASUREMENT
from homeassistant.const import CONF_NAME, CONF_UNIT_OF_MEASUREMENT, CONF_VALUE_TEMPLATE
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
_LOGGER = logging.getLogger(__name__)