From 6f63ea6cb4293ca87b8e3f58f3483ce0821f98ff Mon Sep 17 00:00:00 2001 From: illuzn Date: Fri, 15 Dec 2023 00:26:39 +0000 Subject: [PATCH] Remove component version from device_info --- custom_components/rheem_eziset/const.py | 1 - custom_components/rheem_eziset/entity.py | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/custom_components/rheem_eziset/const.py b/custom_components/rheem_eziset/const.py index c9415f9..a1fb798 100644 --- a/custom_components/rheem_eziset/const.py +++ b/custom_components/rheem_eziset/const.py @@ -10,7 +10,6 @@ IDPREFIX = "rheem_water_heater_" DOMAIN = "rheem_eziset" MANUFACTURER = "Rheem" -VERSION = "2023.12.0" PLATFORMS: list[Platform] = [ Platform.SENSOR, Platform.BINARY_SENSOR, diff --git a/custom_components/rheem_eziset/entity.py b/custom_components/rheem_eziset/entity.py index 2802970..a92be8f 100644 --- a/custom_components/rheem_eziset/entity.py +++ b/custom_components/rheem_eziset/entity.py @@ -3,7 +3,7 @@ from homeassistant.helpers.update_coordinator import CoordinatorEntity -from .const import DOMAIN, NAME, MANUFACTURER, VERSION +from .const import DOMAIN, NAME, MANUFACTURER from .coordinator import RheemEziSETDataUpdateCoordinator class RheemEziSETEntity(CoordinatorEntity): @@ -21,7 +21,6 @@ def device_info(self): "identifiers": {(DOMAIN, self.coordinator.api.host)}, "name": NAME, "manufacturer": MANUFACTURER, - "model": VERSION, } @property