Skip to content

Commit

Permalink
Fixing device name
Browse files Browse the repository at this point in the history
  • Loading branch information
MTrab committed Dec 29, 2023
1 parent 01642df commit 3f0fed2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/webastoconnect/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(

self._attr_device_info = {
"identifiers": {(DOMAIN, self.coordinator.cloud.device_id)},
"name": self.name,
"name": self.coordinator.cloud.name,
"model": "ThermoConnect",
"manufacturer": "Webasto",
}
Expand Down
2 changes: 1 addition & 1 deletion custom_components/webastoconnect/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(
self._attr_should_poll = False
self._attr_device_info = {
"identifiers": {(DOMAIN, self.coordinator.cloud.device_id)},
"name": self.name,
"name": self.coordinator.cloud.name,
"model": "ThermoConnect",
"manufacturer": "Webasto",
}
Expand Down
2 changes: 1 addition & 1 deletion custom_components/webastoconnect/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def __init__(

self._attr_device_info = {
"identifiers": {(DOMAIN, self.coordinator.cloud.device_id)},
"name": self.name,
"name": self.coordinator.cloud.name,
"model": "ThermoConnect",
"manufacturer": "Webasto",
}
Expand Down

0 comments on commit 3f0fed2

Please sign in to comment.