From bb8b51eda3e3605df7db7cd92153d6c03745c802 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 13 Jun 2022 10:56:08 -1000 Subject: [PATCH] Fix typos in ConfigEntryState.recoverable (#73449) --- homeassistant/config_entries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index a8b2752d2aa..2aa5b1b8c62 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -106,7 +106,7 @@ class ConfigEntryState(Enum): def recoverable(self) -> bool: """Get if the state is recoverable. - If the entry is state is recoverable, unloads + If the entry state is recoverable, unloads and reloads are allowed. """ return self._recoverable