Migrate config_entries to use propcache cached_property (#127495)
This commit is contained in:
parent
48a07d531c
commit
10c033e580
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue