Skip to content
Snippets Groups Projects
Unverified Commit d27c91b9 authored by epenet's avatar epenet Committed by GitHub
Browse files

Use DeviceInfo in tasmota (#58604)

parent a0a8b9db
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,9 @@ class TasmotaEntity(Entity):
@property
def device_info(self) -> DeviceInfo:
"""Return a device description for device registry."""
return {"connections": {(CONNECTION_NETWORK_MAC, self._tasmota_entity.mac)}}
return DeviceInfo(
connections={(CONNECTION_NETWORK_MAC, self._tasmota_entity.mac)}
)
@property
def name(self) -> str | None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment