From 25b5ad7de418ea9eefd50d687ab12acaaa7d8625 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Sun, 28 May 2023 17:11:46 +0200 Subject: [PATCH] Fix typo in ping (#93701) --- homeassistant/components/ping/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/ping/__init__.py b/homeassistant/components/ping/__init__.py index 2236b8dc337..b78702de54d 100644 --- a/homeassistant/components/ping/__init__.py +++ b/homeassistant/components/ping/__init__.py @@ -15,7 +15,7 @@ _LOGGER = logging.getLogger(__name__) async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool: - """Set up the template integration.""" + """Set up the ping integration.""" await async_setup_reload_service(hass, DOMAIN, PLATFORMS) hass.data[DOMAIN] = { PING_PRIVS: await hass.async_add_executor_job(_can_use_icmp_lib_with_privilege),