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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -12,11 +12,10 @@ theme = gr.themes.Base(
12
  button_large_text_weight='400',
13
  input_background_fill='#ffffff',
14
  input_border_width='*block_border_width',
15
- #input_border_color='gray',
16
  )
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)
 
12
  button_large_text_weight='400',
13
  input_background_fill='#ffffff',
14
  input_border_width='*block_border_width',
 
15
  )
16
 
17
  with gr.Blocks(theme=theme) as demo:
18
+ img = gr.Image(show_label=False)
19
  textbox = gr.Textbox(show_label=False)
20
  button = gr.Button("generate")
21
  button.click(fn=generate, inputs=textbox, outputs=img)