Skip to content

Commit

Permalink
remove trailing ws
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmsailor committed Aug 19, 2023
1 parent 9b5e387 commit 8b76a3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions music21/romanText/tsvConverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'''
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 8b76a3f

Please sign in to comment.