From 51596c6231394c2ac52f5096dc7ca34abeaeab36 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 21 Oct 2023 10:07:02 -1000 Subject: [PATCH] Remove useless freezing on PassiveBluetoothDataUpdate (#102434) --- homeassistant/components/bluetooth/passive_update_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/bluetooth/passive_update_processor.py b/homeassistant/components/bluetooth/passive_update_processor.py index 39338e94a77..b4ac15fc28c 100644 --- a/homeassistant/components/bluetooth/passive_update_processor.py +++ b/homeassistant/components/bluetooth/passive_update_processor.py @@ -119,7 +119,7 @@ def serialize_entity_description(description: EntityDescription) -> dict[str, An } -@dataclasses.dataclass(slots=True, frozen=True) +@dataclasses.dataclass(slots=True, frozen=False) class PassiveBluetoothDataUpdate(Generic[_T]): """Generic bluetooth data."""