Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions custom_components/hildebrandglow_dcc/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down