Skip to content

Commit f20034f

Browse files
committed
use constructor default tempo when instantiating Link
1 parent 4f4a59a commit f20034f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

isobar/timelines/clock_link.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self,
1616
clock_target: Any = None,
1717
tempo: float = DEFAULT_TEMPO,
1818
ticks_per_beat: int = DEFAULT_TICKS_PER_BEAT):
19-
self.link_client = link.Link(120)
19+
self.link_client = link.Link(tempo)
2020
self.link_client.enabled = True
2121
self.link_client.startStopSyncEnabled = True
2222
self.link_client.setTempoCallback(self.tempo_changed_callback)

0 commit comments

Comments
 (0)