From e1361d3101b70e700f303ba3e9afda68e5937c88 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:41:04 +0100 Subject: [PATCH] Add todo for lru_cache --- homeassistant/util/enum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/util/enum.py b/homeassistant/util/enum.py index d0ef010f8bbc91..96048e9b026e79 100644 --- a/homeassistant/util/enum.py +++ b/homeassistant/util/enum.py @@ -13,7 +13,7 @@ def lru_cache(func: _LruCacheT) -> _LruCacheT: """Stub for lru_cache.""" else: - from functools import lru_cache + from functools import lru_cache # TODO # pylint: disable=fixme _EnumT = TypeVar("_EnumT", bound=Enum)