From 0580e5b563646265d6685c74977f44495b0e0556 Mon Sep 17 00:00:00 2001 From: Jonathan Petersson Date: Tue, 5 Nov 2024 16:26:45 +0100 Subject: [PATCH] Fix debug to use the correct variables, this breaks the flow when initializing the system --- custom_components/sector/entity.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/sector/entity.py b/custom_components/sector/entity.py index 7c4893a..8978421 100644 --- a/custom_components/sector/entity.py +++ b/custom_components/sector/entity.py @@ -33,9 +33,9 @@ def __init__( self._model = model _LOGGER.debug( "Initialized entity %s %s with unique_id: %s", + self._serial_no, self._name, - self._attr_name, - self._attr_unique_id, + self._model, ) @property