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

@ -6,9 +6,9 @@ import voluptuous as vol
from homeassistant import config_entries
from .const import (
from .core.const import (
CONF_RADIO_TYPE, CONF_USB_PATH, DEFAULT_DATABASE_NAME, DOMAIN, RadioType)
from .helpers import check_zigpy_connection
from .core.helpers import check_zigpy_connection
@config_entries.HANDLERS.register(DOMAIN)