Remove deprecated fibaro yaml config (#87939)
This commit is contained in:
parent
666aace8a2
commit
5f4a2a713c
3 changed files with 2 additions and 118 deletions
|
@ -12,7 +12,6 @@ from homeassistant import config_entries
|
|||
from homeassistant.const import CONF_PASSWORD, CONF_URL, CONF_USERNAME
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.data_entry_flow import FlowResult
|
||||
from homeassistant.helpers.typing import ConfigType
|
||||
|
||||
from . import FibaroAuthFailed, FibaroConnectFailed, FibaroController
|
||||
from .const import CONF_IMPORT_PLUGINS, DOMAIN
|
||||
|
@ -98,10 +97,6 @@ class FibaroConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|||
step_id="user", data_schema=STEP_USER_DATA_SCHEMA, errors=errors
|
||||
)
|
||||
|
||||
async def async_step_import(self, import_config: ConfigType | None) -> FlowResult:
|
||||
"""Import a config entry."""
|
||||
return await self.async_step_user(import_config)
|
||||
|
||||
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult:
|
||||
"""Handle reauthentication."""
|
||||
self._reauth_entry = self.hass.config_entries.async_get_entry(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue