Skip to content

Commit

Permalink
Timeline: Improve dump() format
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Aug 9, 2024
1 parent 85df71a commit 09ee319
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions isobar/timelines/timeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,15 +313,15 @@ def dump(self):
print("Timeline (clock: %s, tempo %s)" %
(self.clock_source, self.clock_source.tempo if self.clock_source.tempo else "unknown"))

print((" - %d devices" % len(self.output_devices)))
print((" - Devices (total=%d)" % len(self.output_devices)))
for device in self.output_devices:
print((" - %s" % device))

print((" - %d tracks" % len(self.tracks)))
print((" - Tracks (total=%d)" % len(self.tracks)))
for track in self.tracks:
print((" - %s" % track))

print((" - %d lfos" % len(self.lfos)))
print((" - LFOs (total=%d)" % len(self.lfos)))
for lfo in self.lfos:
print((" - %s" % lfo))

Expand Down

0 comments on commit 09ee319

Please sign in to comment.