Skip to content

Commit

Permalink
last lints?
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuthbert committed Jun 14, 2024
1 parent c6584a9 commit 3540deb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions music21/figuredBass/resolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def augmentedSixthToDominant(
def augmentedSixthToMajorTonic(
augSixthPossib,
augSixthType: int | None = None,
augSixthChordInfo: list[pitch.Pitch, None] | None = None
augSixthChordInfo: list[pitch.Pitch | None] | None = None
) -> tuple[pitch.Pitch, ...]:
'''
Resolves French (augSixthType = 1), German (augSixthType = 2), and Swiss (augSixthType = 3)
Expand Down Expand Up @@ -212,7 +212,7 @@ def augmentedSixthToMajorTonic(
def augmentedSixthToMinorTonic(
augSixthPossib,
augSixthType: int | None = None,
augSixthChordInfo: list[pitch.Pitch, None] | None = None
augSixthChordInfo: list[pitch.Pitch | None] | None = None
) -> tuple[pitch.Pitch, ...]:
'''
Resolves French (augSixthType = 1), German (augSixthType = 2), and Swiss (augSixthType = 3)
Expand Down

0 comments on commit 3540deb

Please sign in to comment.