Skip to content

Commit

Permalink
Merge pull request #1699 from TimFelixBeyer/patch-12
Browse files Browse the repository at this point in the history
Add 'fa up' notehead type
  • Loading branch information
mscuthbert authored Apr 25, 2024
2 parents d33ca3c + c0e1999 commit f7b9e7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions music21/chord/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4247,6 +4247,7 @@ def setNotehead(self, nh, pitchTarget):
'diamond'
'do'
'fa'
'fa up'
'inverted triangle'
'la'
'left triangle'
Expand Down
3 changes: 2 additions & 1 deletion music21/note.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
'diamond',
'do',
'fa',
'fa up',
'inverted triangle',
'la',
'left triangle',
Expand Down Expand Up @@ -1132,7 +1133,7 @@ def notehead(self) -> str:
>>> note.noteheadTypeNames
('arrow down', 'arrow up', 'back slashed', 'circle dot', 'circle-x', 'circled', 'cluster',
'cross', 'diamond', 'do', 'fa', 'inverted triangle', 'la', 'left triangle',
'cross', 'diamond', 'do', 'fa', 'fa up', 'inverted triangle', 'la', 'left triangle',
'mi', 'none', 'normal', 'other', 're', 'rectangle', 'slash', 'slashed', 'so',
'square', 'ti', 'triangle', 'x')
>>> n = note.Note()
Expand Down

0 comments on commit f7b9e7b

Please sign in to comment.