We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbc39ce commit 8a4c8d9Copy full SHA for 8a4c8d9
music21/search/lyrics.py
@@ -745,7 +745,7 @@ def testCustomSeparator(self):
745
for lenWordSep in range(5):
746
wordSep = ' ' * lenWordSep
747
ls = search.lyrics.LyricSearcher(s, wordSep)
748
- for pair in more_itertools.pairwise("长亭外古道边"):
+ for pair in more_itertools.pairwise('长亭外古道边'):
749
keyword = pair[0] + wordSep + pair[1]
750
match = ls.search(keyword)
751
self.assertEqual(len(match), 1)
0 commit comments