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

Classes

class  FytaConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 DATA_SCHEMA
 

Detailed Description

Config flow for FYTA integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 28 of file config_flow.py.

◆ DATA_SCHEMA

homeassistant.components.fyta.config_flow.DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_USERNAME): TextSelector(
4  TextSelectorConfig(
5  type=TextSelectorType.TEXT,
6  autocomplete="username",
7  ),
8  ),
9  vol.Required(CONF_PASSWORD): TextSelector(
10  TextSelectorConfig(
11  type=TextSelectorType.PASSWORD,
12  autocomplete="current-password",
13  ),
14  ),
15  }
16 )

Definition at line 31 of file config_flow.py.