Skip to content

Commit f1ceaa5

Browse files
committed
added comment
1 parent e9b2091 commit f1ceaa5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

adafruit_midi/note_off.py

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class NoteOff(MIDIMessage): # pylint: disable=duplicate-code
3737

3838
def __init__(self, note, velocity=0, *, channel=None):
3939
self.note = note_parser(note)
40+
""" self.note: key, either int (0-127) or string that will be turned off """
4041
self._velocity = velocity
4142
super().__init__(channel=channel)
4243
if not 0 <= self.note <= 127 or not 0 <= self._velocity <= 127:

0 commit comments

Comments
 (0)