Sort imports according to PEP8 for components starting with "B" (#29762)

This commit is contained in:
Bas Nijholt
2019-12-09 13:52:18 +01:00
committed by Franck Nijhof
parent df74272ba6
commit 73de69896b
23 changed files with 59 additions and 61 deletions

View File

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