From 0a5a259027962cce9a3534f89ee8da6390dfa2dc Mon Sep 17 00:00:00 2001 From: Tim Beyer <35711942+TimFelixBeyer@users.noreply.github.com> Date: Thu, 26 Dec 2024 16:29:10 +0100 Subject: [PATCH] fix mypy --- music21/common/enums.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/music21/common/enums.py b/music21/common/enums.py index 5ef9efb6d..f23347ffc 100644 --- a/music21/common/enums.py +++ b/music21/common/enums.py @@ -157,9 +157,9 @@ class OffsetSpecial(StrEnum): * New in v7. ''' - AT_END: str = 'highestTime' - LOWEST_OFFSET: str = 'lowestOffset' - HIGHEST_OFFSET: str = 'highestOffset' + AT_END = 'highestTime' + LOWEST_OFFSET = 'lowestOffset' + HIGHEST_OFFSET = 'highestOffset' class GatherSpanners(BooleanEnum):