1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-27 14:31:13 +00:00

Switch to using fast cached_property implementation in propcache (#127339)

This commit is contained in:
J. Nick Koston
2024-10-03 13:11:02 -05:00
committed by GitHub
parent 58f786f6d0
commit 0f29fd3e10
81 changed files with 116 additions and 82 deletions

View File

@@ -11,7 +11,6 @@ from collections.abc import Callable, Iterable
from contextlib import suppress
from dataclasses import dataclass
import functools as ft
from functools import cached_property
import importlib
import logging
import os
@@ -26,6 +25,7 @@ from awesomeversion import (
AwesomeVersionException,
AwesomeVersionStrategy,
)
from propcache import cached_property
import voluptuous as vol
from . import generated