From df7d8840c77c3a8d0a9f4a020ab434c2039fb061 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 7 Mar 2024 10:55:23 -1000 Subject: [PATCH] merge --- homeassistant/config_entries.py | 4 ++-- homeassistant/core.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/homeassistant/config_entries.py b/homeassistant/config_entries.py index 6b42795ecce3..6976d6d36a8e 100644 --- a/homeassistant/config_entries.py +++ b/homeassistant/config_entries.py @@ -1028,7 +1028,7 @@ class ConfigEntry: Background tasks are automatically canceled when config entry is unloaded. - This is a background task which is different from a normal task: + A background task is different from a normal task: - Will not block startup - Will be automatically cancelled on shutdown @@ -1057,7 +1057,7 @@ class ConfigEntry: This type of task is typically used for polling. - This is a periodic task which is different from a normal task: + A periodic task is different from a normal task: - Will not block startup - Will be automatically cancelled on shutdown diff --git a/homeassistant/core.py b/homeassistant/core.py index df42c1951e18..3e78efa2e47c 100644 --- a/homeassistant/core.py +++ b/homeassistant/core.py @@ -674,7 +674,7 @@ class HomeAssistant: This type of task is for background tasks that usually run for the lifetime of Home Assistant or an integration's setup. - This is a background task which is different from a normal task: + A background task is different from a normal task: - Will not block startup - Will be automatically cancelled on shutdown @@ -705,7 +705,7 @@ class HomeAssistant: This type of task is typically used for polling. - This is a periodic task which is different from a normal task: + A periodic task is different from a normal task: - Will not block startup - Will be automatically cancelled on shutdown