Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.webostv.config_flow Namespace Reference

Classes

class  FlowHandler
 
class  OptionsFlowHandler
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 DATA_SCHEMA
 

Detailed Description

Config flow to configure webostv component.

Variable Documentation

◆ _LOGGER

homeassistant.components.webostv.config_flow._LOGGER = logging.getLogger(__name__)
private

Definition at line 37 of file config_flow.py.

◆ DATA_SCHEMA

homeassistant.components.webostv.config_flow.DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_HOST): cv.string,
4  vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
5  },
6  extra=vol.ALLOW_EXTRA,
7 )

Definition at line 29 of file config_flow.py.