diff --git a/symusic/core.pyi b/symusic/core.pyi index ef5d92c..4c4b4a8 100644 --- a/symusic/core.pyi +++ b/symusic/core.pyi @@ -4,7 +4,68 @@ import typing import numpy -__all__ = ["ControlChangeQuarter", "ControlChangeQuarterList", "ControlChangeSecond", "ControlChangeSecondList", "ControlChangeTick", "ControlChangeTickList", "KeySignatureQuarter", "KeySignatureQuarterList", "KeySignatureSecond", "KeySignatureSecondList", "KeySignatureTick", "KeySignatureTickList", "NoteQuarter", "NoteQuarterList", "NoteSecond", "NoteSecondList", "NoteTick", "NoteTickList", "PedalQuarter", "PedalQuarterList", "PedalSecond", "PedalSecondList", "PedalTick", "PedalTickList", "PitchBendQuarter", "PitchBendQuarterList", "PitchBendSecond", "PitchBendSecondList", "PitchBendTick", "PitchBendTickList", "Quarter", "ScoreQuarter", "ScoreTick", "Second", "TempoQuarter", "TempoQuarterList", "TempoSecond", "TempoSecondList", "TempoTick", "TempoTickList", "TextMetaQuarter", "TextMetaQuarterList", "TextMetaSecond", "TextMetaSecondList", "TextMetaTick", "TextMetaTickList", "Tick", "TimeSignatureQuarter", "TimeSignatureQuarterList", "TimeSignatureSecond", "TimeSignatureSecondList", "TimeSignatureTick", "TimeSignatureTickList", "TrackQuarter", "TrackQuarterList", "TrackSecond", "TrackSecondList", "TrackTick", "TrackTickList"] +__all__ = [ + "ControlChangeQuarter", + "ControlChangeQuarterList", + "ControlChangeSecond", + "ControlChangeSecondList", + "ControlChangeTick", + "ControlChangeTickList", + "KeySignatureQuarter", + "KeySignatureQuarterList", + "KeySignatureSecond", + "KeySignatureSecondList", + "KeySignatureTick", + "KeySignatureTickList", + "NoteQuarter", + "NoteQuarterList", + "NoteSecond", + "NoteSecondList", + "NoteTick", + "NoteTickList", + "PedalQuarter", + "PedalQuarterList", + "PedalSecond", + "PedalSecondList", + "PedalTick", + "PedalTickList", + "PitchBendQuarter", + "PitchBendQuarterList", + "PitchBendSecond", + "PitchBendSecondList", + "PitchBendTick", + "PitchBendTickList", + "Quarter", + "ScoreQuarter", + "ScoreTick", + "Second", + "TempoQuarter", + "TempoQuarterList", + "TempoSecond", + "TempoSecondList", + "TempoTick", + "TempoTickList", + "TextMetaQuarter", + "TextMetaQuarterList", + "TextMetaSecond", + "TextMetaSecondList", + "TextMetaTick", + "TextMetaTickList", + "Tick", + "TimeSignatureQuarter", + "TimeSignatureQuarterList", + "TimeSignatureSecond", + "TimeSignatureSecondList", + "TimeSignatureTick", + "TimeSignatureTickList", + "TrackQuarter", + "TrackQuarterList", + "TrackSecond", + "TrackSecondList", + "TrackTick", + "TrackTickList", +] + class ControlChangeQuarter: __hash__: typing.ClassVar[None] = None number: int @@ -18,24 +79,18 @@ class ControlChangeQuarter: """ Deep copy """ - def __eq__(self, arg0: ControlChangeQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: ControlChangeQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: ControlChangeQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, number: int, value: int) -> None: - ... - def __ne__(self, arg0: ControlChangeQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, number: int, value: int) -> None: ... + def __ne__(self, arg0: ControlChangeQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> ControlChangeQuarter: """ Deep copy @@ -45,8 +100,8 @@ class ControlChangeQuarter: Shift the event time by offset """ @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class ControlChangeQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -67,53 +122,42 @@ class ControlChangeQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: ControlChangeQuarterList) -> bool: - ... + def __eq__(self, arg0: ControlChangeQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> ControlChangeQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> ControlChangeQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> ControlChangeQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: ControlChangeQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: ControlChangeQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: ControlChangeQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: ControlChangeQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: ControlChangeQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: ControlChangeQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: ControlChangeQuarter) -> None: """ Add an item to the end of the list @@ -154,11 +198,12 @@ class ControlChangeQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class ControlChangeSecond: __hash__: typing.ClassVar[None] = None number: int @@ -172,24 +217,18 @@ class ControlChangeSecond: """ Deep copy """ - def __eq__(self, arg0: ControlChangeSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: ControlChangeSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: ControlChangeSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, number: int, value: int) -> None: - ... - def __ne__(self, arg0: ControlChangeSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, number: int, value: int) -> None: ... + def __ne__(self, arg0: ControlChangeSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> ControlChangeSecond: """ Deep copy @@ -199,8 +238,8 @@ class ControlChangeSecond: Shift the event time by offset """ @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class ControlChangeSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -221,53 +260,42 @@ class ControlChangeSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: ControlChangeSecondList) -> bool: - ... + def __eq__(self, arg0: ControlChangeSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> ControlChangeSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> ControlChangeSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> ControlChangeSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: ControlChangeSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: ControlChangeSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: ControlChangeSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: ControlChangeSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: ControlChangeSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: ControlChangeSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: ControlChangeSecond) -> None: """ Add an item to the end of the list @@ -308,11 +336,12 @@ class ControlChangeSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class ControlChangeTick: __hash__: typing.ClassVar[None] = None number: int @@ -326,24 +355,18 @@ class ControlChangeTick: """ Deep copy """ - def __eq__(self, arg0: ControlChangeTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: ControlChangeTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: ControlChangeTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: int, number: int, value: int) -> None: - ... - def __ne__(self, arg0: ControlChangeTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: int, number: int, value: int) -> None: ... + def __ne__(self, arg0: ControlChangeTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> ControlChangeTick: """ Deep copy @@ -353,8 +376,8 @@ class ControlChangeTick: Shift the event time by offset """ @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class ControlChangeTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -375,53 +398,42 @@ class ControlChangeTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: ControlChangeTickList) -> bool: - ... + def __eq__(self, arg0: ControlChangeTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> ControlChangeTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> ControlChangeTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> ControlChangeTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: ControlChangeTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: ControlChangeTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: ControlChangeTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: ControlChangeTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: ControlChangeTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: ControlChangeTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: ControlChangeTick) -> None: """ Add an item to the end of the list @@ -462,11 +474,12 @@ class ControlChangeTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class KeySignatureQuarter: __hash__: typing.ClassVar[None] = None key: int @@ -480,24 +493,18 @@ class KeySignatureQuarter: """ Deep copy """ - def __eq__(self, arg0: KeySignatureQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: KeySignatureQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: KeySignatureQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, key: int, tonality: int) -> None: - ... - def __ne__(self, arg0: KeySignatureQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, key: int, tonality: int) -> None: ... + def __ne__(self, arg0: KeySignatureQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> KeySignatureQuarter: """ Deep copy @@ -507,11 +514,10 @@ class KeySignatureQuarter: Shift the event time by offset """ @property - def degree(self) -> int: - ... + def degree(self) -> int: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class KeySignatureQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -532,53 +538,42 @@ class KeySignatureQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: KeySignatureQuarterList) -> bool: - ... + def __eq__(self, arg0: KeySignatureQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> KeySignatureQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> KeySignatureQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> KeySignatureQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: KeySignatureQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: KeySignatureQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: KeySignatureQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: KeySignatureQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: KeySignatureQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: KeySignatureQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: KeySignatureQuarter) -> None: """ Add an item to the end of the list @@ -619,11 +614,12 @@ class KeySignatureQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class KeySignatureSecond: __hash__: typing.ClassVar[None] = None key: int @@ -637,24 +633,18 @@ class KeySignatureSecond: """ Deep copy """ - def __eq__(self, arg0: KeySignatureSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: KeySignatureSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: KeySignatureSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, key: int, tonality: int) -> None: - ... - def __ne__(self, arg0: KeySignatureSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, key: int, tonality: int) -> None: ... + def __ne__(self, arg0: KeySignatureSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> KeySignatureSecond: """ Deep copy @@ -664,11 +654,10 @@ class KeySignatureSecond: Shift the event time by offset """ @property - def degree(self) -> int: - ... + def degree(self) -> int: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class KeySignatureSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -689,53 +678,42 @@ class KeySignatureSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: KeySignatureSecondList) -> bool: - ... + def __eq__(self, arg0: KeySignatureSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> KeySignatureSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> KeySignatureSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> KeySignatureSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: KeySignatureSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: KeySignatureSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: KeySignatureSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: KeySignatureSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: KeySignatureSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: KeySignatureSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: KeySignatureSecond) -> None: """ Add an item to the end of the list @@ -776,11 +754,12 @@ class KeySignatureSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class KeySignatureTick: __hash__: typing.ClassVar[None] = None key: int @@ -794,24 +773,18 @@ class KeySignatureTick: """ Deep copy """ - def __eq__(self, arg0: KeySignatureTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: KeySignatureTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: KeySignatureTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: int, key: int, tonality: int) -> None: - ... - def __ne__(self, arg0: KeySignatureTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: int, key: int, tonality: int) -> None: ... + def __ne__(self, arg0: KeySignatureTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> KeySignatureTick: """ Deep copy @@ -821,11 +794,10 @@ class KeySignatureTick: Shift the event time by offset """ @property - def degree(self) -> int: - ... + def degree(self) -> int: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class KeySignatureTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -846,53 +818,42 @@ class KeySignatureTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: KeySignatureTickList) -> bool: - ... + def __eq__(self, arg0: KeySignatureTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> KeySignatureTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> KeySignatureTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> KeySignatureTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: KeySignatureTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: KeySignatureTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: KeySignatureTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: KeySignatureTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: KeySignatureTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: KeySignatureTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: KeySignatureTick) -> None: """ Add an item to the end of the list @@ -933,11 +894,12 @@ class KeySignatureTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class NoteQuarter: __hash__: typing.ClassVar[None] = None duration: float @@ -953,24 +915,20 @@ class NoteQuarter: """ Deep copy """ - def __eq__(self, arg0: NoteQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: NoteQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: NoteQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, start: float, duration: float, pitch: int, velocity: int) -> None: - ... - def __ne__(self, arg0: NoteQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__( + self, start: float, duration: float, pitch: int, velocity: int + ) -> None: ... + def __ne__(self, arg0: NoteQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> NoteQuarter: """ Deep copy @@ -979,8 +937,7 @@ class NoteQuarter: """ duration <= 0 or velocity <= 0 """ - def end_time(self) -> float: - ... + def end_time(self) -> float: ... def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: """ Shift the pitch by offset @@ -994,11 +951,10 @@ class NoteQuarter: Shift the velocity by offset """ @property - def end(self) -> float: - ... + def end(self) -> float: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class NoteQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1019,53 +975,42 @@ class NoteQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: NoteQuarterList) -> bool: - ... + def __eq__(self, arg0: NoteQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> NoteQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> NoteQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> NoteQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: NoteQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: NoteQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: NoteQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: NoteQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: NoteQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: NoteQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: NoteQuarter) -> None: """ Add an item to the end of the list @@ -1106,11 +1051,12 @@ class NoteQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class NoteSecond: __hash__: typing.ClassVar[None] = None duration: float @@ -1126,24 +1072,20 @@ class NoteSecond: """ Deep copy """ - def __eq__(self, arg0: NoteSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: NoteSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: NoteSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, start: float, duration: float, pitch: int, velocity: int) -> None: - ... - def __ne__(self, arg0: NoteSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__( + self, start: float, duration: float, pitch: int, velocity: int + ) -> None: ... + def __ne__(self, arg0: NoteSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> NoteSecond: """ Deep copy @@ -1152,8 +1094,7 @@ class NoteSecond: """ duration <= 0 or velocity <= 0 """ - def end_time(self) -> float: - ... + def end_time(self) -> float: ... def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: """ Shift the pitch by offset @@ -1167,11 +1108,10 @@ class NoteSecond: Shift the velocity by offset """ @property - def end(self) -> float: - ... + def end(self) -> float: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class NoteSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1192,53 +1132,42 @@ class NoteSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: NoteSecondList) -> bool: - ... + def __eq__(self, arg0: NoteSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> NoteSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> NoteSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> NoteSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: NoteSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: NoteSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: NoteSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: NoteSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: NoteSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: NoteSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: NoteSecond) -> None: """ Add an item to the end of the list @@ -1279,11 +1208,12 @@ class NoteSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class NoteTick: __hash__: typing.ClassVar[None] = None duration: int @@ -1299,24 +1229,20 @@ class NoteTick: """ Deep copy """ - def __eq__(self, arg0: NoteTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: NoteTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: NoteTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, start: int, duration: int, pitch: int, velocity: int) -> None: - ... - def __ne__(self, arg0: NoteTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__( + self, start: int, duration: int, pitch: int, velocity: int + ) -> None: ... + def __ne__(self, arg0: NoteTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> NoteTick: """ Deep copy @@ -1325,8 +1251,7 @@ class NoteTick: """ duration <= 0 or velocity <= 0 """ - def end_time(self) -> int: - ... + def end_time(self) -> int: ... def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: """ Shift the pitch by offset @@ -1340,11 +1265,10 @@ class NoteTick: Shift the velocity by offset """ @property - def end(self) -> int: - ... + def end(self) -> int: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class NoteTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1365,53 +1289,42 @@ class NoteTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: NoteTickList) -> bool: - ... + def __eq__(self, arg0: NoteTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> NoteTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> NoteTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> NoteTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: NoteTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: NoteTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: NoteTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: NoteTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: NoteTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: NoteTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: NoteTick) -> None: """ Add an item to the end of the list @@ -1452,11 +1365,12 @@ class NoteTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class PedalQuarter: __hash__: typing.ClassVar[None] = None duration: float @@ -1469,24 +1383,18 @@ class PedalQuarter: """ Deep copy """ - def __eq__(self, arg0: PedalQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: PedalQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: PedalQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, duration: float) -> None: - ... - def __ne__(self, arg0: PedalQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, duration: float) -> None: ... + def __ne__(self, arg0: PedalQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> PedalQuarter: """ Deep copy @@ -1496,11 +1404,10 @@ class PedalQuarter: Shift the event time by offset """ @property - def end(self) -> float: - ... + def end(self) -> float: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class PedalQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1521,53 +1428,42 @@ class PedalQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: PedalQuarterList) -> bool: - ... + def __eq__(self, arg0: PedalQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> PedalQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> PedalQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> PedalQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: PedalQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: PedalQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: PedalQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: PedalQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: PedalQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: PedalQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: PedalQuarter) -> None: """ Add an item to the end of the list @@ -1608,11 +1504,12 @@ class PedalQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class PedalSecond: __hash__: typing.ClassVar[None] = None duration: float @@ -1625,24 +1522,18 @@ class PedalSecond: """ Deep copy """ - def __eq__(self, arg0: PedalSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: PedalSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: PedalSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, duration: float) -> None: - ... - def __ne__(self, arg0: PedalSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, duration: float) -> None: ... + def __ne__(self, arg0: PedalSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> PedalSecond: """ Deep copy @@ -1652,11 +1543,10 @@ class PedalSecond: Shift the event time by offset """ @property - def end(self) -> float: - ... + def end(self) -> float: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class PedalSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1677,53 +1567,42 @@ class PedalSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: PedalSecondList) -> bool: - ... + def __eq__(self, arg0: PedalSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> PedalSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> PedalSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> PedalSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: PedalSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: PedalSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: PedalSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: PedalSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: PedalSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: PedalSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: PedalSecond) -> None: """ Add an item to the end of the list @@ -1764,11 +1643,12 @@ class PedalSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class PedalTick: __hash__: typing.ClassVar[None] = None duration: int @@ -1781,24 +1661,18 @@ class PedalTick: """ Deep copy """ - def __eq__(self, arg0: PedalTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: PedalTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: PedalTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: int, duration: int) -> None: - ... - def __ne__(self, arg0: PedalTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: int, duration: int) -> None: ... + def __ne__(self, arg0: PedalTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> PedalTick: """ Deep copy @@ -1808,11 +1682,10 @@ class PedalTick: Shift the event time by offset """ @property - def end(self) -> int: - ... + def end(self) -> int: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class PedalTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1833,53 +1706,42 @@ class PedalTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: PedalTickList) -> bool: - ... + def __eq__(self, arg0: PedalTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> PedalTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> PedalTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> PedalTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: PedalTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: PedalTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: PedalTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: PedalTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: PedalTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: PedalTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: PedalTick) -> None: """ Add an item to the end of the list @@ -1920,11 +1782,12 @@ class PedalTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class PitchBendQuarter: __hash__: typing.ClassVar[None] = None time: float @@ -1937,24 +1800,18 @@ class PitchBendQuarter: """ Deep copy """ - def __eq__(self, arg0: PitchBendQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: PitchBendQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: PitchBendQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, value: int) -> None: - ... - def __ne__(self, arg0: PitchBendQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, value: int) -> None: ... + def __ne__(self, arg0: PitchBendQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> PitchBendQuarter: """ Deep copy @@ -1964,8 +1821,8 @@ class PitchBendQuarter: Shift the event time by offset """ @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class PitchBendQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -1986,53 +1843,42 @@ class PitchBendQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: PitchBendQuarterList) -> bool: - ... + def __eq__(self, arg0: PitchBendQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> PitchBendQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> PitchBendQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> PitchBendQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: PitchBendQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: PitchBendQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: PitchBendQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: PitchBendQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: PitchBendQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: PitchBendQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: PitchBendQuarter) -> None: """ Add an item to the end of the list @@ -2073,11 +1919,12 @@ class PitchBendQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class PitchBendSecond: __hash__: typing.ClassVar[None] = None time: float @@ -2090,24 +1937,18 @@ class PitchBendSecond: """ Deep copy """ - def __eq__(self, arg0: PitchBendSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: PitchBendSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: PitchBendSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, value: int) -> None: - ... - def __ne__(self, arg0: PitchBendSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, value: int) -> None: ... + def __ne__(self, arg0: PitchBendSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> PitchBendSecond: """ Deep copy @@ -2117,8 +1958,8 @@ class PitchBendSecond: Shift the event time by offset """ @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class PitchBendSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -2139,53 +1980,42 @@ class PitchBendSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: PitchBendSecondList) -> bool: - ... + def __eq__(self, arg0: PitchBendSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> PitchBendSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> PitchBendSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> PitchBendSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: PitchBendSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: PitchBendSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: PitchBendSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: PitchBendSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: PitchBendSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: PitchBendSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: PitchBendSecond) -> None: """ Add an item to the end of the list @@ -2226,11 +2056,12 @@ class PitchBendSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class PitchBendTick: __hash__: typing.ClassVar[None] = None time: int @@ -2243,24 +2074,18 @@ class PitchBendTick: """ Deep copy """ - def __eq__(self, arg0: PitchBendTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: PitchBendTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: PitchBendTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: int, value: int) -> None: - ... - def __ne__(self, arg0: PitchBendTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: int, value: int) -> None: ... + def __ne__(self, arg0: PitchBendTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> PitchBendTick: """ Deep copy @@ -2270,8 +2095,8 @@ class PitchBendTick: Shift the event time by offset """ @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class PitchBendTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -2292,53 +2117,42 @@ class PitchBendTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: PitchBendTickList) -> bool: - ... + def __eq__(self, arg0: PitchBendTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> PitchBendTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> PitchBendTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> PitchBendTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: PitchBendTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: PitchBendTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: PitchBendTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: PitchBendTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: PitchBendTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: PitchBendTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: PitchBendTick) -> None: """ Add an item to the end of the list @@ -2379,21 +2193,19 @@ class PitchBendTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class Quarter: __hash__: typing.ClassVar[None] = None - def __eq__(self, arg0: typing.Any) -> bool: - ... - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def is_time_unit(self) -> bool: - ... + def __eq__(self, arg0: typing.Any) -> bool: ... + def __init__(self) -> None: ... + def __repr__(self) -> str: ... + def is_time_unit(self) -> bool: ... + class ScoreQuarter: __hash__: typing.ClassVar[None] = None key_signatures: KeySignatureQuarterList @@ -2416,13 +2228,10 @@ class ScoreQuarter: """ Deep copy """ - def __eq__(self, arg0: ScoreQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: ScoreQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self, tpq: int) -> None: - ... + def __init__(self, tpq: int) -> None: ... @typing.overload def __init__(self, other: ScoreQuarter) -> None: """ @@ -2438,12 +2247,9 @@ class ScoreQuarter: """ Convert Tick to Quarter """ - def __ne__(self, arg0: ScoreQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __ne__(self, arg0: ScoreQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def clip(self, start: float, end: float, clip_end: bool = False) -> ScoreQuarter: """ Clip events a given time range @@ -2458,33 +2264,25 @@ class ScoreQuarter: Dump to midi file """ @typing.overload - def dump_midi(self, path: typing.Any) -> None: - ... - def empty(self) -> bool: - ... - def end(self) -> float: - ... - def note_num(self) -> int: - ... - def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: - ... - def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_time(self, offset: float, inplace: bool = False) -> typing.Any: - ... - def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = False) -> typing.Any: - ... - def start(self) -> float: - ... + def dump_midi(self, path: typing.Any) -> None: ... + def empty(self) -> bool: ... + def end(self) -> float: ... + def note_num(self) -> int: ... + def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: ... + def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_time(self, offset: float, inplace: bool = False) -> typing.Any: ... + def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = False + ) -> typing.Any: ... + def start(self) -> float: ... def to(self, ttype: typing.Any) -> typing.Any: """ Convert to another time unit """ @property - def ttype() -> Quarter: - ... + def ttype() -> Quarter: ... + class ScoreTick: __hash__: typing.ClassVar[None] = None key_signatures: KeySignatureTickList @@ -2507,13 +2305,10 @@ class ScoreTick: """ Deep copy """ - def __eq__(self, arg0: ScoreTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: ScoreTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self, tpq: int) -> None: - ... + def __init__(self, tpq: int) -> None: ... @typing.overload def __init__(self, other: ScoreTick) -> None: """ @@ -2529,12 +2324,9 @@ class ScoreTick: """ Convert Quarter to Tick """ - def __ne__(self, arg0: ScoreTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __ne__(self, arg0: ScoreTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def clip(self, start: int, end: int, clip_end: bool = False) -> ScoreTick: """ Clip events a given time range @@ -2549,43 +2341,32 @@ class ScoreTick: Dump to midi file """ @typing.overload - def dump_midi(self, path: typing.Any) -> None: - ... - def empty(self) -> bool: - ... - def end(self) -> int: - ... - def note_num(self) -> int: - ... - def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: - ... - def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_time(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = False) -> typing.Any: - ... - def start(self) -> int: - ... + def dump_midi(self, path: typing.Any) -> None: ... + def empty(self) -> bool: ... + def end(self) -> int: ... + def note_num(self) -> int: ... + def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: ... + def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_time(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = False + ) -> typing.Any: ... + def start(self) -> int: ... def to(self, ttype: typing.Any) -> typing.Any: """ Convert to another time unit """ @property - def ttype() -> Tick: - ... + def ttype() -> Tick: ... + class Second: __hash__: typing.ClassVar[None] = None - def __eq__(self, arg0: typing.Any) -> bool: - ... - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def is_time_unit(self) -> bool: - ... + def __eq__(self, arg0: typing.Any) -> bool: ... + def __init__(self) -> None: ... + def __repr__(self) -> str: ... + def is_time_unit(self) -> bool: ... + class TempoQuarter: __hash__: typing.ClassVar[None] = None time: float @@ -2597,24 +2378,18 @@ class TempoQuarter: """ Deep copy """ - def __eq__(self, arg0: TempoQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TempoQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TempoQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, qpm: float) -> None: - ... - def __ne__(self, arg0: TempoQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, qpm: float) -> None: ... + def __ne__(self, arg0: TempoQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TempoQuarter: """ Deep copy @@ -2629,19 +2404,17 @@ class TempoQuarter: Quarter per minute, the same as tempo """ @qpm.setter - def qpm(self, arg1: float) -> None: - ... + def qpm(self, arg1: float) -> None: ... @property def tempo(self) -> float: """ The same as qpm """ @tempo.setter - def tempo(self, arg1: float) -> None: - ... + def tempo(self, arg1: float) -> None: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class TempoQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -2662,53 +2435,42 @@ class TempoQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TempoQuarterList) -> bool: - ... + def __eq__(self, arg0: TempoQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TempoQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TempoQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TempoQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TempoQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TempoQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TempoQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TempoQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: TempoQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TempoQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TempoQuarter) -> None: """ Add an item to the end of the list @@ -2749,11 +2511,12 @@ class TempoQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class TempoSecond: __hash__: typing.ClassVar[None] = None time: float @@ -2765,24 +2528,18 @@ class TempoSecond: """ Deep copy """ - def __eq__(self, arg0: TempoSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TempoSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TempoSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, qpm: float) -> None: - ... - def __ne__(self, arg0: TempoSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, qpm: float) -> None: ... + def __ne__(self, arg0: TempoSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TempoSecond: """ Deep copy @@ -2797,19 +2554,17 @@ class TempoSecond: Quarter per minute, the same as tempo """ @qpm.setter - def qpm(self, arg1: float) -> None: - ... + def qpm(self, arg1: float) -> None: ... @property def tempo(self) -> float: """ The same as qpm """ @tempo.setter - def tempo(self, arg1: float) -> None: - ... + def tempo(self, arg1: float) -> None: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class TempoSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -2830,53 +2585,42 @@ class TempoSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TempoSecondList) -> bool: - ... + def __eq__(self, arg0: TempoSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TempoSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TempoSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TempoSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TempoSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TempoSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TempoSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TempoSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: TempoSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TempoSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TempoSecond) -> None: """ Add an item to the end of the list @@ -2917,11 +2661,12 @@ class TempoSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class TempoTick: __hash__: typing.ClassVar[None] = None time: int @@ -2933,24 +2678,18 @@ class TempoTick: """ Deep copy """ - def __eq__(self, arg0: TempoTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TempoTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TempoTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: int, qpm: float) -> None: - ... - def __ne__(self, arg0: TempoTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: int, qpm: float) -> None: ... + def __ne__(self, arg0: TempoTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TempoTick: """ Deep copy @@ -2965,19 +2704,17 @@ class TempoTick: Quarter per minute, the same as tempo """ @qpm.setter - def qpm(self, arg1: float) -> None: - ... + def qpm(self, arg1: float) -> None: ... @property def tempo(self) -> float: """ The same as qpm """ @tempo.setter - def tempo(self, arg1: float) -> None: - ... + def tempo(self, arg1: float) -> None: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class TempoTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -2998,53 +2735,42 @@ class TempoTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TempoTickList) -> bool: - ... + def __eq__(self, arg0: TempoTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TempoTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TempoTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TempoTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TempoTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TempoTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TempoTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TempoTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: TempoTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TempoTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TempoTick) -> None: """ Add an item to the end of the list @@ -3085,11 +2811,12 @@ class TempoTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class TextMetaQuarter: __hash__: typing.ClassVar[None] = None text: str @@ -3102,24 +2829,18 @@ class TextMetaQuarter: """ Deep copy """ - def __eq__(self, arg0: TextMetaQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TextMetaQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TextMetaQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, text: str) -> None: - ... - def __ne__(self, arg0: TextMetaQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, text: str) -> None: ... + def __ne__(self, arg0: TextMetaQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TextMetaQuarter: """ Deep copy @@ -3129,8 +2850,8 @@ class TextMetaQuarter: Shift the event time by offset """ @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class TextMetaQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -3151,53 +2872,42 @@ class TextMetaQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TextMetaQuarterList) -> bool: - ... + def __eq__(self, arg0: TextMetaQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TextMetaQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TextMetaQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TextMetaQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TextMetaQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TextMetaQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TextMetaQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TextMetaQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: TextMetaQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TextMetaQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TextMetaQuarter) -> None: """ Add an item to the end of the list @@ -3238,11 +2948,12 @@ class TextMetaQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class TextMetaSecond: __hash__: typing.ClassVar[None] = None text: str @@ -3255,24 +2966,18 @@ class TextMetaSecond: """ Deep copy """ - def __eq__(self, arg0: TextMetaSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TextMetaSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TextMetaSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: float, text: str) -> None: - ... - def __ne__(self, arg0: TextMetaSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: float, text: str) -> None: ... + def __ne__(self, arg0: TextMetaSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TextMetaSecond: """ Deep copy @@ -3282,8 +2987,8 @@ class TextMetaSecond: Shift the event time by offset """ @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class TextMetaSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -3304,53 +3009,42 @@ class TextMetaSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TextMetaSecondList) -> bool: - ... + def __eq__(self, arg0: TextMetaSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TextMetaSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TextMetaSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TextMetaSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TextMetaSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TextMetaSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TextMetaSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TextMetaSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: TextMetaSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TextMetaSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TextMetaSecond) -> None: """ Add an item to the end of the list @@ -3391,11 +3085,12 @@ class TextMetaSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class TextMetaTick: __hash__: typing.ClassVar[None] = None text: str @@ -3408,24 +3103,18 @@ class TextMetaTick: """ Deep copy """ - def __eq__(self, arg0: TextMetaTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TextMetaTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TextMetaTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, time: int, text: str) -> None: - ... - def __ne__(self, arg0: TextMetaTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, time: int, text: str) -> None: ... + def __ne__(self, arg0: TextMetaTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TextMetaTick: """ Deep copy @@ -3435,8 +3124,8 @@ class TextMetaTick: Shift the event time by offset """ @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class TextMetaTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -3457,53 +3146,42 @@ class TextMetaTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TextMetaTickList) -> bool: - ... + def __eq__(self, arg0: TextMetaTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TextMetaTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TextMetaTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TextMetaTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TextMetaTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TextMetaTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TextMetaTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TextMetaTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: TextMetaTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TextMetaTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TextMetaTick) -> None: """ Add an item to the end of the list @@ -3544,21 +3222,19 @@ class TextMetaTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class Tick: __hash__: typing.ClassVar[None] = None - def __eq__(self, arg0: typing.Any) -> bool: - ... - def __init__(self) -> None: - ... - def __repr__(self) -> str: - ... - def is_time_unit(self) -> bool: - ... + def __eq__(self, arg0: typing.Any) -> bool: ... + def __init__(self) -> None: ... + def __repr__(self) -> str: ... + def is_time_unit(self) -> bool: ... + class TimeSignatureQuarter: __hash__: typing.ClassVar[None] = None denominator: int @@ -3572,24 +3248,18 @@ class TimeSignatureQuarter: """ Deep copy """ - def __eq__(self, arg0: TimeSignatureQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TimeSignatureQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TimeSignatureQuarter) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: float, arg1: int, arg2: int) -> None: - ... - def __ne__(self, arg0: TimeSignatureQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, arg0: float, arg1: int, arg2: int) -> None: ... + def __ne__(self, arg0: TimeSignatureQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TimeSignatureQuarter: """ Deep copy @@ -3599,8 +3269,8 @@ class TimeSignatureQuarter: Shift the event time by offset """ @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class TimeSignatureQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -3621,53 +3291,42 @@ class TimeSignatureQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TimeSignatureQuarterList) -> bool: - ... + def __eq__(self, arg0: TimeSignatureQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TimeSignatureQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TimeSignatureQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TimeSignatureQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TimeSignatureQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TimeSignatureQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TimeSignatureQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TimeSignatureQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: TimeSignatureQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TimeSignatureQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TimeSignatureQuarter) -> None: """ Add an item to the end of the list @@ -3708,11 +3367,12 @@ class TimeSignatureQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Quarter: - ... + def ttype(self) -> Quarter: ... + class TimeSignatureSecond: __hash__: typing.ClassVar[None] = None denominator: int @@ -3726,24 +3386,18 @@ class TimeSignatureSecond: """ Deep copy """ - def __eq__(self, arg0: TimeSignatureSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TimeSignatureSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TimeSignatureSecond) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: float, arg1: int, arg2: int) -> None: - ... - def __ne__(self, arg0: TimeSignatureSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, arg0: float, arg1: int, arg2: int) -> None: ... + def __ne__(self, arg0: TimeSignatureSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TimeSignatureSecond: """ Deep copy @@ -3753,8 +3407,8 @@ class TimeSignatureSecond: Shift the event time by offset """ @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class TimeSignatureSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -3775,53 +3429,42 @@ class TimeSignatureSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TimeSignatureSecondList) -> bool: - ... + def __eq__(self, arg0: TimeSignatureSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TimeSignatureSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TimeSignatureSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TimeSignatureSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TimeSignatureSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TimeSignatureSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TimeSignatureSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TimeSignatureSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: TimeSignatureSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TimeSignatureSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TimeSignatureSecond) -> None: """ Add an item to the end of the list @@ -3862,11 +3505,12 @@ class TimeSignatureSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Second: - ... + def ttype(self) -> Second: ... + class TimeSignatureTick: __hash__: typing.ClassVar[None] = None denominator: int @@ -3880,24 +3524,18 @@ class TimeSignatureTick: """ Deep copy """ - def __eq__(self, arg0: TimeSignatureTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TimeSignatureTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload def __init__(self, other: TimeSignatureTick) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: int, arg1: int, arg2: int) -> None: - ... - def __ne__(self, arg0: TimeSignatureTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __init__(self, arg0: int, arg1: int, arg2: int) -> None: ... + def __ne__(self, arg0: TimeSignatureTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def copy(self) -> TimeSignatureTick: """ Deep copy @@ -3907,8 +3545,8 @@ class TimeSignatureTick: Shift the event time by offset """ @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class TimeSignatureTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -3929,53 +3567,42 @@ class TimeSignatureTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TimeSignatureTickList) -> bool: - ... + def __eq__(self, arg0: TimeSignatureTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TimeSignatureTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TimeSignatureTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TimeSignatureTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TimeSignatureTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TimeSignatureTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TimeSignatureTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TimeSignatureTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: TimeSignatureTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TimeSignatureTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TimeSignatureTick) -> None: """ Add an item to the end of the list @@ -4016,11 +3643,12 @@ class TimeSignatureTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype(self) -> Tick: - ... + def ttype(self) -> Tick: ... + class TrackQuarter: __hash__: typing.ClassVar[None] = None controls: ControlChangeQuarterList @@ -4038,24 +3666,18 @@ class TrackQuarter: """ Deep copy """ - def __eq__(self, arg0: TrackQuarter) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TrackQuarter) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, other: TrackQuarter) -> None: """ Copy constructor """ - def __ne__(self, arg0: TrackQuarter) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __ne__(self, arg0: TrackQuarter) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def clip(self, start: float, end: float, clip_end: bool = False) -> TrackQuarter: """ Clip notes and controls to a given time range @@ -4064,27 +3686,20 @@ class TrackQuarter: """ Deep copy """ - def empty(self) -> bool: - ... - def end(self) -> float: - ... - def note_num(self) -> int: - ... - def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: - ... - def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_time(self, offset: float, inplace: bool = False) -> typing.Any: - ... - def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = False) -> typing.Any: - ... - def start(self) -> float: - ... + def empty(self) -> bool: ... + def end(self) -> float: ... + def note_num(self) -> int: ... + def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: ... + def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_time(self, offset: float, inplace: bool = False) -> typing.Any: ... + def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = False + ) -> typing.Any: ... + def start(self) -> float: ... @property - def ttype() -> Quarter: - ... + def ttype() -> Quarter: ... + class TrackQuarterList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -4105,53 +3720,42 @@ class TrackQuarterList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TrackQuarterList) -> bool: - ... + def __eq__(self, arg0: TrackQuarterList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TrackQuarterList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TrackQuarter: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TrackQuarter: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TrackQuarterList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TrackQuarterList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TrackQuarterList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TrackQuarter) -> None: - ... + def __setitem__(self, arg0: int, arg1: TrackQuarter) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TrackQuarterList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TrackQuarter) -> None: """ Add an item to the end of the list @@ -4192,11 +3796,12 @@ class TrackQuarterList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype() -> Quarter: - ... + def ttype() -> Quarter: ... + class TrackSecond: __hash__: typing.ClassVar[None] = None controls: ControlChangeSecondList @@ -4214,24 +3819,18 @@ class TrackSecond: """ Deep copy """ - def __eq__(self, arg0: TrackSecond) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TrackSecond) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, other: TrackSecond) -> None: """ Copy constructor """ - def __ne__(self, arg0: TrackSecond) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __ne__(self, arg0: TrackSecond) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def clip(self, start: float, end: float, clip_end: bool = False) -> TrackSecond: """ Clip notes and controls to a given time range @@ -4240,27 +3839,20 @@ class TrackSecond: """ Deep copy """ - def empty(self) -> bool: - ... - def end(self) -> float: - ... - def note_num(self) -> int: - ... - def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: - ... - def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_time(self, offset: float, inplace: bool = False) -> typing.Any: - ... - def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = False) -> typing.Any: - ... - def start(self) -> float: - ... + def empty(self) -> bool: ... + def end(self) -> float: ... + def note_num(self) -> int: ... + def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: ... + def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_time(self, offset: float, inplace: bool = False) -> typing.Any: ... + def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = False + ) -> typing.Any: ... + def start(self) -> float: ... @property - def ttype() -> Second: - ... + def ttype() -> Second: ... + class TrackSecondList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -4281,53 +3873,42 @@ class TrackSecondList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TrackSecondList) -> bool: - ... + def __eq__(self, arg0: TrackSecondList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TrackSecondList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TrackSecond: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TrackSecond: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TrackSecondList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TrackSecondList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TrackSecondList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TrackSecond) -> None: - ... + def __setitem__(self, arg0: int, arg1: TrackSecond) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TrackSecondList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TrackSecond) -> None: """ Add an item to the end of the list @@ -4368,11 +3949,12 @@ class TrackSecondList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype() -> Second: - ... + def ttype() -> Second: ... + class TrackTick: __hash__: typing.ClassVar[None] = None controls: ControlChangeTickList @@ -4390,24 +3972,18 @@ class TrackTick: """ Deep copy """ - def __eq__(self, arg0: TrackTick) -> bool: - ... - def __getstate__(self) -> bytes: - ... + def __eq__(self, arg0: TrackTick) -> bool: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, other: TrackTick) -> None: """ Copy constructor """ - def __ne__(self, arg0: TrackTick) -> bool: - ... - def __repr__(self) -> str: - ... - def __setstate__(self, arg0: bytes) -> None: - ... + def __ne__(self, arg0: TrackTick) -> bool: ... + def __repr__(self) -> str: ... + def __setstate__(self, arg0: bytes) -> None: ... def clip(self, start: int, end: int, clip_end: bool = False) -> TrackTick: """ Clip notes and controls to a given time range @@ -4416,27 +3992,20 @@ class TrackTick: """ Deep copy """ - def empty(self) -> bool: - ... - def end(self) -> int: - ... - def note_num(self) -> int: - ... - def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: - ... - def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_time(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: - ... - def sort(self, key: typing.Any = None, reverse: bool = False, inplace: bool = False) -> typing.Any: - ... - def start(self) -> int: - ... + def empty(self) -> bool: ... + def end(self) -> int: ... + def note_num(self) -> int: ... + def pianoroll(self, quantization: float, mode: str) -> numpy.ndarray: ... + def shift_pitch(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_time(self, offset: int, inplace: bool = False) -> typing.Any: ... + def shift_velocity(self, offset: int, inplace: bool = False) -> typing.Any: ... + def sort( + self, key: typing.Any = None, reverse: bool = False, inplace: bool = False + ) -> typing.Any: ... + def start(self) -> int: ... @property - def ttype() -> Tick: - ... + def ttype() -> Tick: ... + class TrackTickList: __hash__: typing.ClassVar[None] = None def __bool__(self) -> bool: @@ -4457,53 +4026,42 @@ class TrackTickList: """ Delete list elements using a slice object """ - def __eq__(self, arg0: TrackTickList) -> bool: - ... + def __eq__(self, arg0: TrackTickList) -> bool: ... @typing.overload def __getitem__(self, s: slice) -> TrackTickList: """ Retrieve list elements using a slice object """ @typing.overload - def __getitem__(self, arg0: int) -> TrackTick: - ... - def __getstate__(self) -> bytes: - ... + def __getitem__(self, arg0: int) -> TrackTick: ... + def __getstate__(self) -> bytes: ... @typing.overload - def __init__(self) -> None: - ... + def __init__(self) -> None: ... @typing.overload def __init__(self, arg0: TrackTickList) -> None: """ Copy constructor """ @typing.overload - def __init__(self, arg0: typing.Iterable) -> None: - ... - def __iter__(self) -> typing.Iterator: - ... - def __len__(self) -> int: - ... - def __ne__(self, arg0: TrackTickList) -> bool: - ... + def __init__(self, arg0: typing.Iterable) -> None: ... + def __iter__(self) -> typing.Iterator: ... + def __len__(self) -> int: ... + def __ne__(self, arg0: TrackTickList) -> bool: ... @typing.overload def __repr__(self) -> str: """ Return the canonical string representation of this list. """ @typing.overload - def __repr__(self) -> str: - ... + def __repr__(self) -> str: ... @typing.overload - def __setitem__(self, arg0: int, arg1: TrackTick) -> None: - ... + def __setitem__(self, arg0: int, arg1: TrackTick) -> None: ... @typing.overload def __setitem__(self, arg0: slice, arg1: TrackTickList) -> None: """ Assign list elements using a slice object """ - def __setstate__(self, arg0: bytes) -> None: - ... + def __setstate__(self, arg0: bytes) -> None: ... def append(self, x: TrackTick) -> None: """ Add an item to the end of the list @@ -4544,8 +4102,8 @@ class TrackTickList: """ Remove the first item from the list whose value is x. It is an error if there is no such item. """ - def sort(self, key: typing.Any, reverse: bool = False, inplace: bool = True) -> typing.Any: - ... + def sort( + self, key: typing.Any, reverse: bool = False, inplace: bool = True + ) -> typing.Any: ... @property - def ttype() -> Tick: - ... + def ttype() -> Tick: ...