Standardize import step variable name (part 2) (#124679)
This commit is contained in:
parent
0d2f22838a
commit
6b0428774d
12 changed files with 73 additions and 98 deletions
|
@ -71,11 +71,9 @@ class TileFlowHandler(ConfigFlow, domain=DOMAIN):
|
|||
|
||||
return self.async_create_entry(title=self._username, data=data)
|
||||
|
||||
async def async_step_import(
|
||||
self, import_config: dict[str, Any]
|
||||
) -> ConfigFlowResult:
|
||||
async def async_step_import(self, import_data: dict[str, Any]) -> ConfigFlowResult:
|
||||
"""Import a config entry from configuration.yaml."""
|
||||
return await self.async_step_user(import_config)
|
||||
return await self.async_step_user(import_data)
|
||||
|
||||
async def async_step_reauth(
|
||||
self, entry_data: Mapping[str, Any]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue