Skip to content

Commit

Permalink
I think affectedTokens is always m21obj?
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuthbert committed Sep 18, 2024
1 parent 955224c commit 123cb0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music21/tinyNotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class State:
autoExpires: typing.Literal[False]|int = False

def __init__(self, parent: Converter|None = None, stateInfo: str|None = None):
self.affectedTokens = []
self.affectedTokens: list[Music21Object] = []
self.parent: Converter|None = parent
self.stateInfo: str|None = stateInfo
# print('Adding state', self, parent.activeStates)
Expand Down

0 comments on commit 123cb0d

Please sign in to comment.