Move imports in rpi_gpio (#27752)

* move imports for rpi_gpio

* fixed pylint error

* fix pylint error

* removed empty line

* add missing blank line

* sort with isort
This commit is contained in:
Tomasz Jagusz 2019-10-17 12:24:53 +02:00 committed by Martin Hjelmare
parent 7fd606a254
commit b187ca93d0
3 changed files with 5 additions and 14 deletions

View file

@ -4,9 +4,9 @@ from time import sleep
import voluptuous as vol
from homeassistant.components.cover import CoverDevice, PLATFORM_SCHEMA
from homeassistant.const import CONF_NAME
from homeassistant.components import rpi_gpio
from homeassistant.components.cover import PLATFORM_SCHEMA, CoverDevice
from homeassistant.const import CONF_NAME
import homeassistant.helpers.config_validation as cv
_LOGGER = logging.getLogger(__name__)