Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TimFelixBeyer committed Mar 1, 2024
1 parent f1ab28c commit 1cb7ffa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion music21/duration.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ def quarterLengthToNonPowerOf2Tuplet(
def quarterLengthToTuplet(
qLen: OffsetQLIn,
maxToReturn: int = 4,
tupletNumerators: list[int] = defaultTupletNumerators
tupletNumerators=defaultTupletNumerators
) -> list[Tuplet]:
'''
Returns a list of possible Tuplet objects for a
Expand Down
2 changes: 1 addition & 1 deletion music21/humdrum/spineParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,7 @@ def hdStringToNote(contents):
thisObject.duration.dots = contents.count('.')
# call Duration.TupletFixer after to correct this.

# 3.2.9 Grace Notes and Groupettos
# 3.2.9 Grace Notes and Groupettos
if 'q' in contents:
thisObject = thisObject.getGrace()
thisObject.duration.type = 'eighth'
Expand Down

0 comments on commit 1cb7ffa

Please sign in to comment.