Skip to content

Commit

Permalink
Merge pull request #7 from illuzn/main
Browse files Browse the repository at this point in the history
Remove component version from device_info
  • Loading branch information
illuzn authored Dec 15, 2023
2 parents 6db55c2 + 6f63ea6 commit 9991700
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion custom_components/rheem_eziset/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
3 changes: 1 addition & 2 deletions custom_components/rheem_eziset/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -21,7 +21,6 @@ def device_info(self):
"identifiers": {(DOMAIN, self.coordinator.api.host)},
"name": NAME,
"manufacturer": MANUFACTURER,
"model": VERSION,
}

@property
Expand Down

0 comments on commit 9991700

Please sign in to comment.