From 93846fe7e9f3a8f7deb9e3e392b9fc1a509d4491 Mon Sep 17 00:00:00 2001 From: hill Date: Fri, 7 Feb 2025 18:51:20 +0000 Subject: [PATCH] remove type ignore --- music21/pitch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/music21/pitch.py b/music21/pitch.py index eb22baf9b5..ba3ad23e73 100644 --- a/music21/pitch.py +++ b/music21/pitch.py @@ -1981,8 +1981,7 @@ def __init__(self, else: self.microtone = Microtone(microtone) if pitchClass is not None: - # type ignore until https://github.com/python/mypy/issues/3004 resolved - self.pitchClass = pitchClass # type: ignore + self.pitchClass = pitchClass if fundamental is not None: self.fundamental = fundamental if midi is not None: