tonyassi commited on
Commit
235323f
·
verified ·
1 Parent(s): 4cb9b61

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ theme = gr.themes.Base(
17
 
18
  with gr.Blocks(theme=theme) as demo:
19
  img = gr.Image()
20
- textbox = gr.Textbox(label=None)
21
  button = gr.Button("generate")
22
  button.click(fn=generate, inputs=textbox, outputs=img)
23
 
 
17
 
18
  with gr.Blocks(theme=theme) as demo:
19
  img = gr.Image()
20
+ textbox = gr.Textbox(show_label=False)
21
  button = gr.Button("generate")
22
  button.click(fn=generate, inputs=textbox, outputs=img)
23