diff options
author | Eddy Pedroni <epedroni@pm.me> | 2025-02-25 14:58:30 +0100 |
---|---|---|
committer | Eddy Pedroni <epedroni@pm.me> | 2025-02-25 14:58:30 +0100 |
commit | bb94fb1ab32732a354f7df68bf0a056d233b2b69 (patch) | |
tree | 82607687a76cb1f049d225bc3151c33c54f9d61c /solo-tool-project/src/solo_tool/notifier.py | |
parent | 62490ac2be04aa3b819222f11389e0549f5909e9 (diff) |
Refactor key point implementation and tests
Diffstat (limited to 'solo-tool-project/src/solo_tool/notifier.py')
-rw-r--r-- | solo-tool-project/src/solo_tool/notifier.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solo-tool-project/src/solo_tool/notifier.py b/solo-tool-project/src/solo_tool/notifier.py index ac1c736..5b3539c 100644 --- a/solo-tool-project/src/solo_tool/notifier.py +++ b/solo-tool-project/src/solo_tool/notifier.py @@ -5,7 +5,7 @@ class Notifier: CURRENT_SONG_EVENT = 3 SONG_LIST_EVENT = 4 CURRENT_KEY_POINT_EVENT = 5 - KEY_POINTS_EVENT = 6 + KEY_POINT_LIST_EVENT = 6 def __init__(self, player): self._callbacks = dict() |