From 863b948e7c384d6ed649a28d34e77e8b31a38b2c Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Tue, 20 Jun 2023 23:26:37 +0200 Subject: [PATCH] Correct calls to super class in RecorderPool (#94923) --- homeassistant/components/recorder/pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):