We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f24bb0d + 0e3149e commit caa8a2aCopy full SHA for caa8a2a
examples/midi_inoutdemo.py
@@ -36,7 +36,7 @@
36
37
# Convert channel numbers at the presentation layer to the ones musicians use
38
print("Default output channel:", midi.out_channel + 1)
39
-print("Listening on input channels:", tuple([c + 1 for c in midi.in_channel]))
+print("Listening on input channels:", tuple(c + 1 for c in midi.in_channel))
40
41
major_chord = [0, 4, 7]
42
while True:
0 commit comments