maint: Upgrade HACS and FontAwesome

This commit is contained in:
2024-11-09 07:59:13 -08:00
parent d32dfcebcb
commit 9cba82fe6b
1601 changed files with 1358 additions and 1649 deletions

View File

@@ -4,10 +4,15 @@ from homeassistant import config_entries
_LOGGER = logging.getLogger(__name__)
DOMAIN = "fontawesome"
@config_entries.HANDLERS.register("fontawesome")
@config_entries.HANDLERS.register(DOMAIN)
class FontawesomeConfigFlow(config_entries.ConfigFlow):
VERSION = 2
async def async_step_user(self, user_input=None):
if self._async_current_entries():
return self.async_abort(reason="single_instance_allowed")
return self.async_create_entry(title="", data={})
return self.async_create_entry(title="Fontawesome Icons", data={})