Mark end_time as unused

This commit is contained in:
Mark Backman
2025-02-11 17:44:52 -05:00
parent 97586b132d
commit 69b0d9035f

View File

@@ -232,7 +232,7 @@ class RimeTTSService(WordTTSService, WebsocketService):
List of (word, timestamp) pairs with proper timing.
"""
word_pairs = []
for i, (word, start_time, end_time) in enumerate(zip(words, starts, ends)):
for i, (word, start_time, _) in enumerate(zip(words, starts, ends)):
if not word.strip():
continue