Kev09 commited on
Commit
a0b94bf
·
1 Parent(s): c31d5b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -25,12 +25,13 @@ def fonc(img):
25
 
26
  with gr.Blocks(css="footer {visibility: hidden}") as demo:
27
  gr.Markdown("Start typing below and then click **Run** to see the output.")
28
- gr.HTML("<br><br><br><br>")
29
  img1=gr.Image(type='filepath',tool=['editor', 'select'] )
30
- gr.HTML("<br><br><br><br>")
31
 
32
  # out = gr.Textbox()
33
  out=gr.Label()
 
34
  btn = gr.Button("Run")
35
  btn.click(fn=fonc, inputs=img1, outputs=out)
36
 
 
25
 
26
  with gr.Blocks(css="footer {visibility: hidden}") as demo:
27
  gr.Markdown("Start typing below and then click **Run** to see the output.")
28
+ gr.HTML("<br>")
29
  img1=gr.Image(type='filepath',tool=['editor', 'select'] )
30
+ gr.HTML("<br>")
31
 
32
  # out = gr.Textbox()
33
  out=gr.Label()
34
+ gr.HTML("<br>")
35
  btn = gr.Button("Run")
36
  btn.click(fn=fonc, inputs=img1, outputs=out)
37