theFisher86 commited on
Commit
556e22a
1 Parent(s): 057e5b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -26,8 +26,8 @@ description = "Upload and download files"
26
  title = "Upload and Download"
27
  interface = gr.Interface(
28
  fn=None, # We don't need a function for this example
29
- BodyInput=gr.inputs.File(label="Upload Body Picture"),
30
- FaceInput=gr.inputs.File(label="Upload Face Picture"),
31
  title=title,
32
  description=description
33
  )
 
26
  title = "Upload and Download"
27
  interface = gr.Interface(
28
  fn=None, # We don't need a function for this example
29
+ BodyInput=gr.File(label="Upload Body Picture"),
30
+ FaceInput=gr.File(label="Upload Face Picture"),
31
  title=title,
32
  description=description
33
  )