Remove deprecated yaml config from vlc_telnet (#62542)

This commit is contained in:
Robert Hillis 2021-12-21 17:37:46 -05:00 committed by GitHub
parent 550fe18603
commit 1279592a98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 80 deletions

View file

@ -104,10 +104,6 @@ class VLCTelnetConfigFlow(ConfigFlow, domain=DOMAIN):
step_id="user", data_schema=user_form_schema(user_input), errors=errors
)
async def async_step_import(self, user_input: dict[str, Any]) -> FlowResult:
"""Handle the import step."""
return await self.async_step_user(user_input)
async def async_step_reauth(self, data: dict[str, Any]) -> FlowResult:
"""Handle reauth flow."""
self.entry = self.hass.config_entries.async_get_entry(self.context["entry_id"])