Tesla Wall Connector: use correct device info keys (#95647)

pull/95681/head
Paulus Schoutsen 2023-07-01 06:06:46 -04:00 committed by GitHub
parent 62ac7973c2
commit 923677dae3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -148,10 +148,10 @@ class WallConnectorEntity(CoordinatorEntity):
"""Return information about the device."""
return DeviceInfo(
identifiers={(DOMAIN, self.wall_connector_data.serial_number)},
default_name=WALLCONNECTOR_DEVICE_NAME,
name=WALLCONNECTOR_DEVICE_NAME,
model=self.wall_connector_data.part_number,
sw_version=self.wall_connector_data.firmware_version,
default_manufacturer="Tesla",
manufacturer="Tesla",
)