From f670a5f30539f95dd3f0466eea8fcf0d8a3a3f84 Mon Sep 17 00:00:00 2001 From: Daniel O'Connor Date: Fri, 7 Feb 2025 00:02:38 +1030 Subject: [PATCH] Update plant_helpers.py - Fix spelling --- custom_components/plant/plant_helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/plant/plant_helpers.py b/custom_components/plant/plant_helpers.py index b111b54..752b4fc 100644 --- a/custom_components/plant/plant_helpers.py +++ b/custom_components/plant/plant_helpers.py @@ -112,10 +112,10 @@ async def openplantbook_search(self, species: str) -> dict[str:Any] | None: return_response=True, ) except TimeoutError: - _LOGGER.warning("Openplantook request timed out") + _LOGGER.warning("Openplantbook request timed out") return None except Exception as ex: - _LOGGER.warning("Openplantook does not work, error: %s", ex) + _LOGGER.warning("Openplantbook does not work, error: %s", ex) return None if bool(plant_search_result): _LOGGER.info("Result: %s", plant_search_result)