Skip to content

Commit

Permalink
Fix line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuthbert authored Jan 3, 2024
1 parent f0fc1a2 commit 529febb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion music21/musicxml/xmlToM21.py
Original file line number Diff line number Diff line change
Expand Up @@ -2873,7 +2873,9 @@ def xmlToChord(self, mxNoteList: list[ET.Element]) -> chord.ChordBase:
if type(art) in seenArticulations:
continue
c.articulations.append(art)
if not isinstance(art, (articulations.Fingering, articulations.StringIndication, articulations.FretIndication)):
if not isinstance(art, (articulations.Fingering,
articulations.StringIndication,
articulations.FretIndication)):
seenArticulations.add(type(art))
for exp in n.expressions:
if type(exp) in seenExpressions:
Expand Down

0 comments on commit 529febb

Please sign in to comment.