ZHA component rewrite part 1 (#20456)

* rearrange files

* add init to module

* update imports

* update coveragerc

* put blank line back... git raw view be damned
This commit is contained in:
David F. Mulcahey 2019-01-26 08:54:49 -05:00 committed by GitHub
parent e593383b4d
commit a0b93c2add
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 132 additions and 125 deletions

View file

@ -8,10 +8,10 @@ import logging
from homeassistant.components.switch import DOMAIN, SwitchDevice
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from . import helpers
from .const import (
from .core import helpers
from .core.const import (
DATA_ZHA, DATA_ZHA_DISPATCHERS, REPORT_CONFIG_IMMEDIATE, ZHA_DISCOVERY_NEW)
from .entities import ZhaEntity
from .entity import ZhaEntity
_LOGGER = logging.getLogger(__name__)