Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
TimFelixBeyer committed Feb 29, 2024
1 parent 764f509 commit 207d3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music21/roman.py
Original file line number Diff line number Diff line change
Expand Up @@ -3491,7 3491,7 @@ def key(self, keyOrScale):
# multiple scales with the same name but different pitches.
scaleHash = keyOrScale.name
if getattr(keyOrScale, 'isConcrete', False):
scaleHash = "_".join(
scaleHash = '_'.join(
[p.nameWithOctave for p in keyOrScale.pitches]
)
if scaleHash in _scaleCache:
Expand Down

0 comments on commit 207d3a5

Please sign in to comment.