Skip to content

Commit

Permalink
Migrate config_entries to use propcache cached_property
Browse files Browse the repository at this point in the history
missed this one, found by #127482
  • Loading branch information
bdraco committed Oct 3, 2024
1 parent 4e30bf7 commit fb2fbbf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion homeassistant/config_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,14 @@
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
Expand Down

0 comments on commit fb2fbbf

Please sign in to comment.