diff --git a/homeassistant/components/recorder/pool.py b/homeassistant/components/recorder/pool.py index 09b113f03eb..46f140305e3 100644 --- a/homeassistant/components/recorder/pool.py +++ b/homeassistant/components/recorder/pool.py @@ -92,7 +92,7 @@ class RecorderPool(SingletonThreadPool, NullPool): # type: ignore[misc] exclude_integrations={"recorder"}, error_if_core=False, ) - return super(NullPool, self)._create_connection() + return NullPool._create_connection(self) class MutexPool(StaticPool):