Fix int value in unique_id for Tellduslive (#127526)

Fix int in unique_id
This commit is contained in:
robinostlund
2024-10-04 12:02:33 +02:00
committed by Franck Nijhof
parent e53bd477b4
commit 1ebde4a880

View File

@@ -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))