From 309cf030b0efb5248c257670f88442b548b99711 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 28 Jun 2022 19:57:17 -0500 Subject: [PATCH] Fix typo in enphase doc string (#74155) --- homeassistant/components/enphase_envoy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/enphase_envoy/__init__.py b/homeassistant/components/enphase_envoy/__init__.py index 61bf9b64bcf22e..0c6c893df64f05 100644 --- a/homeassistant/components/enphase_envoy/__init__.py +++ b/homeassistant/components/enphase_envoy/__init__.py @@ -102,7 +102,7 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: async def async_remove_config_entry_device( hass: HomeAssistant, config_entry: ConfigEntry, device_entry: dr.DeviceEntry ) -> bool: - """Remove a enphase_envoy config entry from a device.""" + """Remove an enphase_envoy config entry from a device.""" dev_ids = {dev_id[1] for dev_id in device_entry.identifiers if dev_id[0] == DOMAIN} data: dict = hass.data[DOMAIN][config_entry.entry_id] coordinator: DataUpdateCoordinator = data[COORDINATOR]