catiR commited on
Commit
7891ce0
·
1 Parent(s): 51c86c4
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -51,10 +51,10 @@ with bl:
51
  # i get everyone elses wavs tho
52
 
53
  with gr.Row():
54
- with gr.column(scale=4):
55
- voiceselect = gr.checkboxgroup(voices, label="TTS voice",value='Alfur')
56
- temp_sentmenu = gr.dropdown(temp_sentences, label="Sentence")
57
- with gr.column(scale=1):
58
  temp_button = gr.Button(value="A button")
59
 
60
 
 
51
  # i get everyone elses wavs tho
52
 
53
  with gr.Row():
54
+ with gr.Column(scale=4):
55
+ voiceselect = gr.CheckboxGroup(voices, label="TTS voice",value='Alfur')
56
+ temp_sentmenu = gr.Dropdown(temp_sentences, label="Sentence")
57
+ with gr.Column(scale=1):
58
  temp_button = gr.Button(value="A button")
59
 
60