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 12, 2024
1 parent c669e16 commit ce3d5a4
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 @@ -98,7 +98,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 ce3d5a4

Please sign in to comment.