mirror of
https://github.com/home-assistant/core.git
synced 2026-09-05 18:25:01 -05:00
Fix int value in unique_id for Tellduslive (#127526)
Fix int in unique_id
This commit is contained in:
@@ -194,4 +194,4 @@ class TelldusLiveSensor(TelldusLiveEntity, SensorEntity):
|
||||
@property
|
||||
def unique_id(self) -> str:
|
||||
"""Return a unique ID."""
|
||||
return "-".join(self._id)
|
||||
return "-".join(map(str, self._id))
|
||||
|
||||
Reference in New Issue
Block a user