From 5c4968c2cb24b5b1a5e941e856eef199d7239476 Mon Sep 17 00:00:00 2001 From: Archaic Rider <93215694+ArchaicRider@users.noreply.github.com> Date: Wed, 27 Sep 2023 15:19:50 +0100 Subject: [PATCH] Update sensor.py Ensure that should_update only triggers in minutes 1-5 and 31-35 past the hour --- custom_components/hildebrandglow_dcc/sensor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/hildebrandglow_dcc/sensor.py b/custom_components/hildebrandglow_dcc/sensor.py index 4ac22f6..d8fd5bb 100644 --- a/custom_components/hildebrandglow_dcc/sensor.py +++ b/custom_components/hildebrandglow_dcc/sensor.py @@ -134,9 +134,9 @@ def device_name(resource, virtual_entity) -> str: async def should_update() -> bool: - """Check if time is between 0-5 or 30-35 minutes past the hour.""" + """Check if time is between 1-5 or 31-35 minutes past the hour.""" minutes = datetime.now().minute - if (0 <= minutes <= 5) or (30 <= minutes <= 35): + if (1 <= minutes <= 5) or (31 <= minutes <= 35): return True return False