From 5bed7fc1183bc55ce2b979a5ee365079099c2def Mon Sep 17 00:00:00 2001 From: Tim Beyer <35711942+TimFelixBeyer@users.noreply.github.com> Date: Thu, 26 Dec 2024 16:06:47 +0100 Subject: [PATCH] Fix flake8 --- music21/musicxml/xmlToM21.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music21/musicxml/xmlToM21.py b/music21/musicxml/xmlToM21.py index 94b734234..0caa04f55 100644 --- a/music21/musicxml/xmlToM21.py +++ b/music21/musicxml/xmlToM21.py @@ -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,