Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
TimFelixBeyer authored Dec 26, 2024
1 parent 7a1cc89 commit 0a5a259
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions music21/common/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 0a5a259

Please sign in to comment.