diff options
author | Wohlstand <admin@wohlnet.ru> | 2019-12-09 18:41:39 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2019-12-09 18:41:39 +0300 |
commit | ea7aa0efe881cd7d75b3bd5b3b5d8aad158bfefc (patch) | |
tree | d176381e57270b60885265e3d901e518cac6e124 /examples | |
parent | 54fd20b643fe1ae8f8f9598db5f7d1033ea1d607 (diff) | |
download | libADLMIDI-ea7aa0efe881cd7d75b3bd5b3b5d8aad158bfefc.tar.gz libADLMIDI-ea7aa0efe881cd7d75b3bd5b3b5d8aad158bfefc.tar.bz2 libADLMIDI-ea7aa0efe881cd7d75b3bd5b3b5d8aad158bfefc.zip |
pyaudio example: remove unneeded print of bool
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/python-pyaudio/playmidi.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/python-pyaudio/playmidi.py b/examples/python-pyaudio/playmidi.py index 8059c7c..f0b8284 100755 --- a/examples/python-pyaudio/playmidi.py +++ b/examples/python-pyaudio/playmidi.py @@ -55,7 +55,6 @@ class MidiPlayer: return True def set_loop_enabled(self, loop_en): - print(loop_en) adl.adl_setLoopEnabled(self._opl, 1 if loop_en else 0) def _create_stream(self, start=True): |