Skip to content

Commit

Permalink
Fix describe on cuts (#1340)
Browse files Browse the repository at this point in the history
Update describe.py

Fix #1339
  • Loading branch information
keeofkoo committed May 15, 2024
1 parent ddde5bd commit d02a168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lhotse/cut/describe.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def time_as_str_(seconds: Seconds) -> str:
if self.sup_custom:
print("SUPERVISION custom fields:")
for key, val in self.sup_custom.most_common():
cut_stats.append(f"- {key} (in {val} cuts)")
print(f"- {key} (in {val} cuts)")

total_speech = np.array(self.speech_durations).sum()
total_speaking_time = np.array(self.speaking_time_durations).sum()
Expand Down

0 comments on commit d02a168

Please sign in to comment.