mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 17:27:10 +00:00
Migrate config_entries to use propcache cached_property (#127495)
This commit is contained in:
parent
48a07d531c
commit
10c033e580
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user