Standardize import step variable name (part 4) (#124692)
* Standardize import step variable name (part 4) * One more * Revert geonetnz_volcano * Revert SMS due to coverage * Revert somfy_mylink due to coverage
This commit is contained in:
parent
f802611359
commit
318259689f
16 changed files with 50 additions and 46 deletions
|
@ -160,9 +160,9 @@ class OctoPrintConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||
"""Handle api fetch failure."""
|
||||
return self.async_abort(reason="auth_failed")
|
||||
|
||||
async def async_step_import(self, user_input):
|
||||
async def async_step_import(self, import_data: dict[str, Any]) -> ConfigFlowResult:
|
||||
"""Handle import."""
|
||||
return await self.async_step_user(user_input)
|
||||
return await self.async_step_user(import_data)
|
||||
|
||||
async def async_step_zeroconf(
|
||||
self, discovery_info: zeroconf.ZeroconfServiceInfo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue