Skip to content

Commit

Permalink
feat: hour chime
Browse files Browse the repository at this point in the history
closes #47
  • Loading branch information
JarbasAl committed Nov 6, 2024
1 parent e23bb1c commit ab6d3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def _schedule_hour_chime(self):
the scheduled time for the next chime event.
"""
n = now_local() + datetime.timedelta(hours=1)
self.schedule_event(self._schedule_hour_chime,
self.schedule_event(self._handle_play_hour_chime,
when=datetime.datetime(year=n.year, month=n.month, day=n.day,
hour=n.hour, minute=0, second=0))

Expand Down

0 comments on commit ab6d3f3

Please sign in to comment.