Skip to content

Commit

Permalink
no r
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuthbert committed Jun 14, 2024
1 parent 598557a commit d4fb6e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions music21/figuredBass/resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def augmentedSixthToDominant(
elif augSixthType == 2:
[bass, root, unused_third, fifth, other] = augSixthChordInfo # other == seventh
else:
raise ResolutionException(f'Unknown augSixthType: {augSixthType|r}')
raise ResolutionException(f'Unknown augSixthType: {augSixthType!r}')

howToResolve = [(lambda p: p.name == bass.name, '-m2'),
(lambda p: p.name == root.name, 'm2'),
Expand Down Expand Up @@ -185,7 +185,7 @@ def augmentedSixthToMajorTonic(
elif augSixthType == 2:
[bass, root, unused_third, fifth, other] = augSixthChordInfo # other == seventh
else:
raise ResolutionException(f'Unknown augSixthType: {augSixthType|r}')
raise ResolutionException(f'Unknown augSixthType: {augSixthType!r}')

howToResolve = [(lambda p: p.name == bass.name, '-m2'),
(lambda p: p.name == root.name, 'm2'),
Expand Down Expand Up @@ -264,7 +264,7 @@ def augmentedSixthToMinorTonic(
elif augSixthType == 2:
[bass, root, unused_third, fifth, other] = augSixthChordInfo # other == seventh
else:
raise ResolutionException(f'Unknown augSixthType: {augSixthType|r}')
raise ResolutionException(f'Unknown augSixthType: {augSixthType!r}')

howToResolve = [(lambda p: p.name == bass.name, '-m2'),
(lambda p: p.name == root.name, 'm2'),
Expand Down

0 comments on commit d4fb6e4

Please sign in to comment.