From e42f54333f0c789b1e75ab3bd95af5abb22351ce Mon Sep 17 00:00:00 2001 From: tmenguy Date: Thu, 26 Sep 2024 20:59:17 +0200 Subject: [PATCH] add a comment --- src/pyatmo/home.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pyatmo/home.py b/src/pyatmo/home.py index 4b197bd6..9a7542ff 100644 --- a/src/pyatmo/home.py +++ b/src/pyatmo/home.py @@ -179,6 +179,7 @@ async def update( self.rooms[room["id"]].update(room) for person_status in data.get("persons", []): + # if there is a person update, it means the house has been updated has_an_update = True if person := self.persons.get(person_status["id"]): person.update(person_status)