vsrinivas commited on
Commit
c6e6f19
·
verified ·
1 Parent(s): 5c349bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ language_choices = ["English", "Polish", "Hindi", "Arabic"]
35
  def clear_all():
36
  global meeting_texts
37
  # meeting_texts = [] # Reset meeting texts
38
- return [None] * (n_participants * 4 + 1)+gr.State([]) # Reset outputs of transcripts, translated texts, and dubbed videos
39
 
40
 
41
  def wait_for_dubbing_completion(dubbing_id: str) -> bool:
 
35
  def clear_all():
36
  global meeting_texts
37
  # meeting_texts = [] # Reset meeting texts
38
+ return [None] * (n_participants * 4 + 1)+[gr.State([])] # Reset outputs of transcripts, translated texts, and dubbed videos
39
 
40
 
41
  def wait_for_dubbing_completion(dubbing_id: str) -> bool: