Sort imports according to PEP8 for arduino (#29702)

This commit is contained in:
Bas Nijholt 2019-12-09 11:26:03 +01:00 committed by Franck Nijhof
parent 852996700f
commit 69f790f6cc
3 changed files with 9 additions and 7 deletions

View file

@ -3,11 +3,11 @@ import logging
import voluptuous as vol
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.components import arduino
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import CONF_NAME
from homeassistant.helpers.entity import Entity
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity
_LOGGER = logging.getLogger(__name__)