Skip to content

Commit 61d8728

Browse files
evaherradatannewt
andauthored
Update adafruit_midi/note_off.py
Co-authored-by: Scott Shawcroft <[email protected]>
1 parent f1ceaa5 commit 61d8728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_midi/note_off.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +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 """
40+
"""key, either int (0-127) or string that will be turned off """
4141
self._velocity = velocity
4242
super().__init__(channel=channel)
4343
if not 0 <= self.note <= 127 or not 0 <= self._velocity <= 127:

0 commit comments

Comments
 (0)