Mark end_time as unused
This commit is contained in:
@@ -232,7 +232,7 @@ class RimeTTSService(WordTTSService, WebsocketService):
|
|||||||
List of (word, timestamp) pairs with proper timing.
|
List of (word, timestamp) pairs with proper timing.
|
||||||
"""
|
"""
|
||||||
word_pairs = []
|
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():
|
if not word.strip():
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user