mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 18:57:06 +00:00
move imports in sony_projector component (#27718)
This commit is contained in:
parent
8720ca38b5
commit
a58d242909
@ -1,10 +1,11 @@
|
|||||||
"""Support for Sony projectors via SDCP network control."""
|
"""Support for Sony projectors via SDCP network control."""
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
import pysdcp
|
||||||
import voluptuous as vol
|
import voluptuous as vol
|
||||||
|
|
||||||
from homeassistant.components.switch import SwitchDevice, PLATFORM_SCHEMA
|
from homeassistant.components.switch import PLATFORM_SCHEMA, SwitchDevice
|
||||||
from homeassistant.const import STATE_ON, STATE_OFF, CONF_NAME, CONF_HOST
|
from homeassistant.const import CONF_HOST, CONF_NAME, STATE_OFF, STATE_ON
|
||||||
import homeassistant.helpers.config_validation as cv
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
@ -21,7 +22,6 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
|
|||||||
|
|
||||||
def setup_platform(hass, config, add_entities, discovery_info=None):
|
def setup_platform(hass, config, add_entities, discovery_info=None):
|
||||||
"""Connect to Sony projector using network."""
|
"""Connect to Sony projector using network."""
|
||||||
import pysdcp
|
|
||||||
|
|
||||||
host = config[CONF_HOST]
|
host = config[CONF_HOST]
|
||||||
name = config[CONF_NAME]
|
name = config[CONF_NAME]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user