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
2 changes: 1 addition & 1 deletion appdaemon/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ async def get_next_period(
match start:
case "immediate":
return now
case "now", _:
case "now" | _:
aware_next = await self.parse_datetime(start, aware=True, now=now)
# Skip forward to the next period if start is in the past
# This makes the result in the first
Expand Down
Loading