Skip to content

Commit

Permalink
lint for m21 doesn't recongize _ as unused
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuthbert committed Jan 3, 2024
1 parent 9257549 commit f2a2f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music21/interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def convertSemitoneToSpecifierGeneric(count: int|float) -> tuple[Specifier, int]
(<Specifier.MINOR>, 2)
'''
# strip off microtone
specifier, semitones, _cent_offset = convertSemitoneToSpecifierGenericMicrotone(count)
specifier, semitones, unused_cent_offset = convertSemitoneToSpecifierGenericMicrotone(count)
return (specifier, semitones)


Expand Down

0 comments on commit f2a2f73

Please sign in to comment.