Skip to content

Commit 6a21d0e

Browse files
Fix output string typo (#223)
1 parent e3a7148 commit 6a21d0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtmidi/midiutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def list_available_ports(ports=None, midiio=None):
7070
"""List MIDI ports given or available on given MIDI I/O instance."""
7171
if ports is None:
7272
ports = midiio.get_ports()
73-
type_ = " input" if isinstance(midiio, rtmidi.MidiIn) else " ouput"
73+
type_ = " input" if isinstance(midiio, rtmidi.MidiIn) else " output"
7474
else:
7575
type_ = ''
7676

0 commit comments

Comments
 (0)