Spaces:
Running
Running
asigalov61
commited on
Commit
•
416753a
1
Parent(s):
33f8e9f
Update app.py
Browse files
app.py
CHANGED
@@ -352,7 +352,7 @@ def match_midi(midi, max_match_ratio, progress=gr.Progress()):
|
|
352 |
|
353 |
txt_mdata += '==============================================================' + chr(10)
|
354 |
|
355 |
-
for m in md[1][16:]:
|
356 |
txt_mdata += str(m)
|
357 |
txt_mdata += chr(10)
|
358 |
|
|
|
352 |
|
353 |
txt_mdata += '==============================================================' + chr(10)
|
354 |
|
355 |
+
for m in [d for d in md[1][16:] if d[0] != 'note']:
|
356 |
txt_mdata += str(m)
|
357 |
txt_mdata += chr(10)
|
358 |
|