Sort imports according to PEP8 for components starting with "Z" (#29784)

* use isort to sort imports for components starting with 'z'

* add skip to end of zha/core/channels/__init__.py

* put 'pylint: disable=import-error' at the right place

* remove the import of config_flow in zha/__init__.py

According to @balloob it is no longer needed.

* revert previous commit

* isort:skip homeassistant/components/zha/__init__.py completely
This commit is contained in:
Bas Nijholt 2019-12-09 18:54:54 +01:00 committed by Franck Nijhof
parent 6b6570e7ca
commit 6cc75fc6f3
10 changed files with 41 additions and 40 deletions

View file

@ -5,7 +5,6 @@ from homeassistant.components.switch import SwitchDevice
from . import PLATFORM_SCHEMA, ZigBeeDigitalOut, ZigBeeDigitalOutConfig
CONF_ON_STATE = "on_state"
DEFAULT_ON_STATE = "high"