From e7e45209ec0c8a245dc2388d50b546a9426bbe5c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 13 May 2022 12:07:26 -0400 Subject: [PATCH] Update stale docstring in logbook (#71814) --- homeassistant/components/logbook/__init__.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/homeassistant/components/logbook/__init__.py b/homeassistant/components/logbook/__init__.py index 80748768c55..d850df847a0 100644 --- a/homeassistant/components/logbook/__init__.py +++ b/homeassistant/components/logbook/__init__.py @@ -355,11 +355,7 @@ def _humanify( context_augmenter: ContextAugmenter, format_time: Callable[[Row], Any], ) -> Generator[dict[str, Any], None, None]: - """Generate a converted list of events into Entry objects. - - Will try to group events if possible: - - if Home Assistant stop and start happen in same minute call it restarted - """ + """Generate a converted list of events into entries.""" external_events = hass.data.get(DOMAIN, {}) # Continuous sensors, will be excluded from the logbook continuous_sensors: dict[str, bool] = {}