Skip to content

Commit

Permalink
Fix variable name mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermorgan committed Dec 26, 2023
1 parent a335d3d commit 2a80035
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/maincheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- fix-mypy-error
- '*CI*'
pull_request:
branches:
Expand Down
2 changes: 1 addition & 1 deletion music21/meter/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def fractionSum(numDenomTuple):
dUnique.add(d)
total += n / d

if len(dListUnique) == 1:
if len(dUnique) == 1:
# This intentionally doesn't reduce to lowest terms...
d = dUnique.pop()
else:
Expand Down

0 comments on commit 2a80035

Please sign in to comment.