From 2396fe22452a15208d1d458b82089f83f586b45c Mon Sep 17 00:00:00 2001 From: Erik Date: Wed, 30 Apr 2025 13:36:03 +0200 Subject: [PATCH] Tweak singleton helper --- homeassistant/helpers/singleton.py | 1 - 1 file changed, 1 deletion(-) diff --git a/homeassistant/helpers/singleton.py b/homeassistant/helpers/singleton.py index 075fc50b49a..5383718302c 100644 --- a/homeassistant/helpers/singleton.py +++ b/homeassistant/helpers/singleton.py @@ -49,7 +49,6 @@ def singleton[_S, _T, _U]( """Wrap a function with caching logic.""" if not asyncio.iscoroutinefunction(func): - @functools.lru_cache(maxsize=1) @bind_hass @functools.wraps(func) def wrapped(hass: HomeAssistant) -> _U: