From 10c033e58059d0640c25645f4bff71a5e27870e1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 3 Oct 2024 15:28:00 -0500 Subject: [PATCH] Migrate config_entries to use propcache cached_property (#127495) --- homeassistant/config_entries.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index aa4c7c49f99..ee93f987a79 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -18,13 +18,14 @@ from copy import deepcopy from datetime import datetime from enum import Enum, StrEnum import functools -from functools import cache, cached_property +from functools import cache import logging from random import randint from types import MappingProxyType from typing import TYPE_CHECKING, Any, Generic, Self, cast from async_interrupt import interrupt +from propcache import cached_property from typing_extensions import TypeVar from . import data_entry_flow, loader