From 22725f76a680828e4ad4ccc1a3b7a46c11e5e3cd 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 f29812c798454d..afb534f00d5047 100644 --- a/homeassistant/util/enum.py +++ b/homeassistant/util/enum.py @@ -12,7 +12,7 @@ def lru_cache[_T: Callable[..., Any]](func: _T) -> _T: """Stub for lru_cache.""" else: - from functools import lru_cache + from functools import lru_cache # TODO # pylint: disable=fixme @lru_cache