diff --git a/requirements_tests.txt b/requirements_tests.txt index 3cca32118..bff6a5c57 100644 --- a/requirements_tests.txt +++ b/requirements_tests.txt @@ -5,7 +5,7 @@ flake8-docstrings==1.6.0 flake8==4.0.1 pre-commit==2.18.1 pydocstyle==6.1.1 -pylint==2.12.2 +pylint==2.13.4 pytest-aiohttp==0.3.0 pytest-asyncio==0.12.0 # NB!: Versions over 0.12.0 breaks pytest-aiohttp (https://github.com/aio-libs/pytest-aiohttp/issues/16) pytest-cov==3.0.0 diff --git a/supervisor/host/manager.py b/supervisor/host/manager.py index 95b6d7a65..43dc3c00a 100644 --- a/supervisor/host/manager.py +++ b/supervisor/host/manager.py @@ -68,7 +68,7 @@ class HostManager(CoreSysAttributes): """Return a list of host features.""" return self.supported_features() - @lru_cache + @lru_cache(maxsize=128) def supported_features(self) -> list[HostFeature]: """Return a list of supported host features.""" features = []