diff --git a/homeassistant/components/recorder/pool.py b/homeassistant/components/recorder/pool.py index 52b6b74dfa1..a8579df834c 100644 --- a/homeassistant/components/recorder/pool.py +++ b/homeassistant/components/recorder/pool.py @@ -87,9 +87,7 @@ class RecorderPool(SingletonThreadPool, NullPool): # type: ignore[misc] exclude_integrations={"recorder"}, error_if_core=False, ) - return super( # pylint: disable=bad-super-call - NullPool, self - )._create_connection() + return super(NullPool, self)._create_connection() class MutexPool(StaticPool): # type: ignore[misc] diff --git a/requirements_test.txt b/requirements_test.txt index 2ccbd6ab440..046d8bfb400 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -13,7 +13,7 @@ freezegun==1.2.1 mock-open==1.4.0 mypy==0.961 pre-commit==2.19.0 -pylint==2.14.1 +pylint==2.14.3 pipdeptree==2.2.1 pylint-strict-informational==0.1 pytest-aiohttp==0.3.0