From 3540debdd20e4418213497dfc911b30656c0d49d Mon Sep 17 00:00:00 2001 From: Michael Scott Asato Cuthbert Date: Thu, 13 Jun 2024 15:50:38 -1000 Subject: [PATCH] last lints? --- music21/figuredBass/resolution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/music21/figuredBass/resolution.py b/music21/figuredBass/resolution.py index c0e15ca80..c16c1f70d 100644 --- a/music21/figuredBass/resolution.py +++ b/music21/figuredBass/resolution.py @@ -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) @@ -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)