Use play_Bars to play a list of Tracks on the given list of channels.
(tracks, channels, bpm=120)
| 191 | |
| 192 | |
| 193 | def play_Tracks(tracks, channels, bpm=120): |
| 194 | """Use play_Bars to play a list of Tracks on the given list of channels.""" |
| 195 | return midi.play_Tracks(tracks, channels, bpm) |
| 196 | |
| 197 | |
| 198 | def play_Composition(composition, channels=None, bpm=120): |
nothing calls this directly
no test coverage detected