From 9d37238adfa03dc5957a847ba001aa85c826e6f9 Mon Sep 17 00:00:00 2001 From: Erwin Douna Date: Sun, 30 Aug 2026 21:27:42 +0200 Subject: [PATCH] Add entry type to Proxmox (#180858) --- homeassistant/components/proxmoxve/entity.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/proxmoxve/entity.py b/homeassistant/components/proxmoxve/entity.py index 2c9d80ec9255..d79b87dfa35a 100644 --- a/homeassistant/components/proxmoxve/entity.py +++ b/homeassistant/components/proxmoxve/entity.py @@ -3,7 +3,7 @@ from typing import Any, override from homeassistant.helpers import device_registry as dr -from homeassistant.helpers.device_registry import DeviceInfo +from homeassistant.helpers.device_registry import DeviceEntryType, DeviceInfo from homeassistant.helpers.entity import EntityDescription from homeassistant.helpers.update_coordinator import CoordinatorEntity @@ -90,6 +90,7 @@ class ProxmoxStorageEntity(ProxmoxCoordinatorEntity): ), config_entry_id=coordinator.config_entry.entry_id, ), + entry_type=DeviceEntryType.SERVICE, ) self._attr_unique_id = ( @@ -149,6 +150,7 @@ class ProxmoxVMEntity(ProxmoxCoordinatorEntity): ), config_entry_id=coordinator.config_entry.entry_id, ), + entry_type=DeviceEntryType.SERVICE, ) self._attr_unique_id = ( @@ -211,6 +213,7 @@ class ProxmoxContainerEntity(ProxmoxCoordinatorEntity): ), config_entry_id=coordinator.config_entry.entry_id, ), + entry_type=DeviceEntryType.SERVICE, ) self._attr_unique_id = (