diff --git a/custom_components/wundasmart/__init__.py b/custom_components/wundasmart/__init__.py index 0275378..54f5ad9 100644 --- a/custom_components/wundasmart/__init__.py +++ b/custom_components/wundasmart/__init__.py @@ -25,11 +25,6 @@ ] -async def async_setup(hass: HomeAssistant, config): - "Setting up this integration using YAML is not supported." - return True - - async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up WundaSmart from a config entry.""" hass.data.setdefault(DOMAIN, {}) diff --git a/custom_components/wundasmart/manifest.json b/custom_components/wundasmart/manifest.json index 9b1c362..b13ce12 100644 --- a/custom_components/wundasmart/manifest.json +++ b/custom_components/wundasmart/manifest.json @@ -1,20 +1,20 @@ { "domain": "wundasmart", "name": "WundaSmart", + "codeowners": [ + "@ob0t", + "@tonyroberts" + ], "config_flow": true, + "dependencies": [], "documentation": "https://github.com/tonyroberts/hawundasmart", + "homekit": {}, + "iot_class": "local_polling", "issue_tracker": "https://github.com/tonyroberts/hawundasmart/issues", - "version": "0.0.1", "requirements": [ "xmltodict" ], "ssdp": [], - "zeroconf": [], - "homekit": {}, - "dependencies": [], - "codeowners": [ - "@ob0t", - "@tonyroberts" - ], - "iot_class": "local_polling" + "version": "0.0.1", + "zeroconf": [] }