Switch keymitt_ble to use no_devices_found (#88271)

* Switch keymitt_ble to use no_devices_found

* Switch keymitt_ble to use no_devices_found
This commit is contained in:
J. Nick Koston 2023-02-16 15:52:29 -06:00 committed by GitHub
parent 06b1bf9c92
commit a059cd7f80
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -99,7 +99,7 @@ class MicroBotConfigFlow(ConfigFlow, domain=DOMAIN):
self._discovered_advs[address] = parsed
if not self._discovered_advs:
return self.async_abort(reason="no_unconfigured_devices")
return self.async_abort(reason="no_devices_found")
if user_input is not None:
self._name = name_from_discovery(self._discovered_adv)