Skip to content

Commit

Permalink
Fix flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
TimFelixBeyer authored Dec 26, 2024
1 parent ab546f9 commit 5bed7fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music21/musicxml/xmlToM21.py
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ def xmlRootToScore(self, mxScore, inputM21=None):
# Fill mid-measure gaps, and find end of measure gaps by ref to measure stream
# https://github.com/cuthbertlab/music21/issues/444
# but only when the score comes from Finale
if any("Finale" in software for software in md.software):
if any('Finale' in software for software in md.software):
v.makeRests(refStreamOrTimeRange=m,
fillGaps=True,
inPlace=True,
Expand Down

0 comments on commit 5bed7fc

Please sign in to comment.