From 61186d24954a6be5de896bd98ada7ca593f869d3 Mon Sep 17 00:00:00 2001 From: tdragon <1210261+tdragon@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:04:27 +0300 Subject: [PATCH] fox: hass warnings --- custom_components/reef_pi/__init__.py | 6 ------ custom_components/reef_pi/manifest.json | 16 ++++++---------- 2 files changed, 6 insertions(+), 16 deletions(-) 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", }