Skip to content

Commit 8b76a3f

Browse files
committed
remove trailing ws
1 parent 9b5e387 commit 8b76a3f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

music21/romanText/tsvConverter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def _changeRepresentation(self) -> None:
261261
self.extra.get('chord_type', '') == 'Mm7'
262262
and self.numeral != 'V'
263263
):
264-
# However, we need to make sure not to match [add13] and
264+
# However, we need to make sure not to match [add13] and
265265
# the like, otherwise we will end up with [addd13]
266266
self.chord = re.sub(
267267
r'''
@@ -881,7 +881,7 @@ def _m21ToTsv_v2(self) -> list[list[str]]:
881881
# We replace the "d" annotation for Mm7 chords on degrees other than
882882
# V because it is not used by the DCML standard
883883
# NB: slightly different from DCML: no key.
884-
thisEntry.chord = thisRN.figure.replace('d', '', 1)
884+
thisEntry.chord = thisRN.figure.replace('d', '', 1)
885885
thisEntry.pedal = None
886886
thisEntry.numeral = thisRN.romanNumeral
887887
thisEntry.form = getForm(thisRN)

0 commit comments

Comments
 (0)