mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-25 18:16:32 +00:00
Bump pylint from 2.12.2 to 2.13.4 (#3539)
* Bump pylint from 2.12.2 to 2.13.4 Bumps [pylint](https://github.com/PyCQA/pylint) from 2.12.2 to 2.13.4. - [Release notes](https://github.com/PyCQA/pylint/releases) - [Changelog](https://github.com/PyCQA/pylint/blob/main/ChangeLog) - [Commits](https://github.com/PyCQA/pylint/compare/v2.12.2...v2.13.4) --- updated-dependencies: - dependency-name: pylint dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Explicitly provide maxsize in lru_cache decorator Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mike Degatano <michael.degatano@gmail.com>
This commit is contained in:
parent
f57aeab9ae
commit
ad85fa29b6
@ -5,7 +5,7 @@ flake8-docstrings==1.6.0
|
|||||||
flake8==4.0.1
|
flake8==4.0.1
|
||||||
pre-commit==2.18.1
|
pre-commit==2.18.1
|
||||||
pydocstyle==6.1.1
|
pydocstyle==6.1.1
|
||||||
pylint==2.12.2
|
pylint==2.13.4
|
||||||
pytest-aiohttp==0.3.0
|
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-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
|
pytest-cov==3.0.0
|
||||||
|
@ -68,7 +68,7 @@ class HostManager(CoreSysAttributes):
|
|||||||
"""Return a list of host features."""
|
"""Return a list of host features."""
|
||||||
return self.supported_features()
|
return self.supported_features()
|
||||||
|
|
||||||
@lru_cache
|
@lru_cache(maxsize=128)
|
||||||
def supported_features(self) -> list[HostFeature]:
|
def supported_features(self) -> list[HostFeature]:
|
||||||
"""Return a list of supported host features."""
|
"""Return a list of supported host features."""
|
||||||
features = []
|
features = []
|
||||||
|
Loading…
x
Reference in New Issue
Block a user