From 596644d715ff206db293725c3e9e441a27b1e918 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Sat, 19 Feb 2022 16:04:20 +0100 Subject: [PATCH] Fix typo [recorder] (#66879) --- 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 9ee89d248cc..b30237f98da 100644 --- a/homeassistant/components/recorder/pool.py +++ b/homeassistant/components/recorder/pool.py @@ -5,7 +5,7 @@ from sqlalchemy.pool import NullPool, StaticPool class RecorderPool(StaticPool, NullPool): - """A hybird of NullPool and StaticPool. + """A hybrid of NullPool and StaticPool. When called from the creating thread acts like StaticPool When called from any other thread, acts like NullPool