Skip to content

Commit

Permalink
comment out note info print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
syncopika committed Jul 13, 2024
1 parent a19c82a commit 1752988
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions mmp_to_musicxml/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,14 +281,14 @@ def add_note(self, parent_node: ET.Element, note: ET.Element, is_chord=False, le
# octave: int
found_note = self.NOTE_FINDER.get_note_based_on_key(int(note.attrib["key"]))

print(
f"key sig: {self.NOTE_FINDER.KEY_SIGNATURE}, "
f"note: {found_note['note']}, "
f"diatonic: {found_note['diatonic']}, "
f"key num: {int(note.attrib['key'])}, "
f"degree:{found_note['degree']}, "
f"octave:{found_note['octave']}"
)
#print(
# f"key sig: {self.NOTE_FINDER.KEY_SIGNATURE}, "
# f"note: {found_note['note']}, "
# f"diatonic: {found_note['diatonic']}, "
# f"key num: {int(note.attrib['key'])}, "
# f"degree:{found_note['degree']}, "
# f"octave:{found_note['octave']}"
#)

pitch = found_note["note"]

Expand Down

0 comments on commit 1752988

Please sign in to comment.