Disable cached_property in entity helper

This commit is contained in:
Erik
2025-05-05 08:46:49 +02:00
parent ab5f20aa69
commit 2e74a2ad28

View File

@@ -18,7 +18,6 @@ import time
from types import FunctionType
from typing import TYPE_CHECKING, Any, Final, Literal, NotRequired, TypedDict, final
from propcache.api import cached_property
import voluptuous as vol
from homeassistant.const import (
@@ -63,6 +62,8 @@ from .event import (
from .frame import report_non_thread_safe_operation
from .typing import UNDEFINED, StateType, UndefinedType
cached_property = property
timer = time.time
if TYPE_CHECKING: