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:
epenet 2024-08-27 16:18:11 +02:00 committed by GitHub
parent f802611359
commit 318259689f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 50 additions and 46 deletions

View file

@ -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