diff --git a/music21/romanText/tsvConverter.py b/music21/romanText/tsvConverter.py index 8847e80b2..ee873642a 100644 --- a/music21/romanText/tsvConverter.py +++ b/music21/romanText/tsvConverter.py @@ -261,7 +261,7 @@ def _changeRepresentation(self) -> None: self.extra.get('chord_type', '') == 'Mm7' and self.numeral != 'V' ): - # However, we need to make sure not to match [add13] and + # However, we need to make sure not to match [add13] and # the like, otherwise we will end up with [addd13] self.chord = re.sub( r''' @@ -881,7 +881,7 @@ def _m21ToTsv_v2(self) -> list[list[str]]: # We replace the "d" annotation for Mm7 chords on degrees other than # V because it is not used by the DCML standard # NB: slightly different from DCML: no key. - thisEntry.chord = thisRN.figure.replace('d', '', 1) + thisEntry.chord = thisRN.figure.replace('d', '', 1) thisEntry.pedal = None thisEntry.numeral = thisRN.romanNumeral thisEntry.form = getForm(thisRN)