Skip to content

Commit 126e5ca

Browse files
committed
change typing of duration._tuplets
1 parent 1727f8b commit 126e5ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

music21/duration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1601,7 +1601,7 @@ def __init__(self, *arguments, **keywords):
16011601

16021602
self._unlinkedType: t.Optional[str] = None
16031603
self._dotGroups: t.Tuple[int, ...] = (0,)
1604-
self._tuplets: t.Union[t.Tuple['Tuplet', ...], t.Tuple] = () # an empty tuple
1604+
self._tuplets: t.Tuple['Tuplet', ...] = () # an empty tuple
16051605
self._qtrLength: OffsetQL = 0.0
16061606

16071607
# DurationTuples go here

0 commit comments

Comments
 (0)