You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File C:\Python312\Lib\site-packages\ipymidi\interface.py:69, in MIDIInterface.inputs(self)
66 @Property
67 def inputs(self) -> "Inputs":
68 """Returns a sequence of MIDI input devices."""
---> 69 self._check_enabled()
70 return Inputs()
File C:\Python312\Lib\site-packages\ipymidi\interface.py:64, in MIDIInterface._check_enabled(self)
62 def _check_enabled(self):
63 if not self.enabled:
---> 64 raise ValueError("MIDI is not enabled!")
ValueError: MIDI is not enabled!
The text was updated successfully, but these errors were encountered:
getting the following error running:
midi.enable()
mid.inputs
ValueError Traceback (most recent call last)
Cell In[159], line 2
1 midi.enable()
----> 2 midi.inputs
File C:\Python312\Lib\site-packages\ipymidi\interface.py:69, in MIDIInterface.inputs(self)
66 @Property
67 def inputs(self) -> "Inputs":
68 """Returns a sequence of MIDI input devices."""
---> 69 self._check_enabled()
70 return Inputs()
File C:\Python312\Lib\site-packages\ipymidi\interface.py:64, in MIDIInterface._check_enabled(self)
62 def _check_enabled(self):
63 if not self.enabled:
---> 64 raise ValueError("MIDI is not enabled!")
ValueError: MIDI is not enabled!
The text was updated successfully, but these errors were encountered: