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

@ -3,11 +3,11 @@ from datetime import timedelta
import logging
import requests
import xmltodict
import voluptuous as vol
import xmltodict
from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.const import CONF_API_KEY, CONF_NAME, ATTR_ATTRIBUTION
from homeassistant.const import ATTR_ATTRIBUTION, CONF_API_KEY, CONF_NAME
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity import Entity