diff --git a/custom_components/reef_pi/__init__.py b/custom_components/reef_pi/__init__.py index b55f196..28d44f5 100644 --- a/custom_components/reef_pi/__init__.py +++ b/custom_components/reef_pi/__init__.py @@ -33,12 +33,6 @@ REEFPI_DATETIME_FORMAT = "%b-%d-%H:%M, %Y" -async def async_setup(hass: HomeAssistant, config: Config) -> bool: - """Set up configured.""" - hass.data.setdefault(DOMAIN, {}) - return True - - async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up ha_reef_pi from a config entry.""" diff --git a/custom_components/reef_pi/manifest.json b/custom_components/reef_pi/manifest.json index cae081b..d5f3ce1 100644 --- a/custom_components/reef_pi/manifest.json +++ b/custom_components/reef_pi/manifest.json @@ -1,20 +1,16 @@ { "domain": "reef_pi", - "version": "0.3.8", "name": "Reef PI Integration", "config_flow": true, + "codeowners": [ + "@tdragon", + "@alex255" + ], "documentation": "https://github.com/tdragon/reef-pi-hass-custom", "issue_tracker": "https://github.com/tdragon/reef-pi-hass-custom/issues", - "ssdp": [], - "zeroconf": [], - "homekit": {}, "requirements": [ "httpx>=0.21.0" ], - "dependencies": [], - "codeowners": [ - "@tdragon", - "@alex255" - ], - "iot_class": "local_polling" + "iot_class": "local_polling", + "version": "0.3.8", }