Add a note_off event for note to event_track.
(self, note)
| 120 | self.play_Bar(bar) |
| 121 | |
| 122 | def stop_Note(self, note): |
| 123 | """Add a note_off event for note to event_track.""" |
| 124 | channel = note.channel |
| 125 | velocity = note.velocity |
| 126 | self.track_data += self.note_off(channel, int(note) + 12, velocity) |
| 127 | |
| 128 | def stop_NoteContainer(self, notecontainer): |
| 129 | """Add note_off events for each note in the NoteContainer to the |
no test coverage detected