Update HACS

This commit is contained in:
root
2022-06-04 14:23:34 -07:00
parent 1dd97a14c2
commit e6757e2cbd
1776 changed files with 13971 additions and 51 deletions

View File

@@ -0,0 +1,13 @@
import logging
from homeassistant import config_entries
_LOGGER = logging.getLogger(__name__)
@config_entries.HANDLERS.register("fontawesome")
class FontawesomeConfigFlow(config_entries.ConfigFlow):
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={})