Cleanup local imports on onewire integration (#42689)

pull/42607/head
epenet 2020-10-31 21:08:26 +01:00 committed by GitHub
parent 065ad920ea
commit 8fabb99b2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,6 @@ import os
from pi1wire import InvalidCRCException, UnsupportResponseException from pi1wire import InvalidCRCException, UnsupportResponseException
import voluptuous as vol import voluptuous as vol
from homeassistant.components.onewire.onewirehub import OneWireHub
from homeassistant.components.sensor import PLATFORM_SCHEMA from homeassistant.components.sensor import PLATFORM_SCHEMA
from homeassistant.config_entries import SOURCE_IMPORT from homeassistant.config_entries import SOURCE_IMPORT
from homeassistant.const import CONF_HOST, CONF_PORT, CONF_TYPE from homeassistant.const import CONF_HOST, CONF_PORT, CONF_TYPE
@ -23,6 +22,7 @@ from .const import (
DOMAIN, DOMAIN,
) )
from .onewire_entities import OneWire, OneWireProxy from .onewire_entities import OneWire, OneWireProxy
from .onewirehub import OneWireHub
_LOGGER = logging.getLogger(__name__) _LOGGER = logging.getLogger(__name__)