sonobit commited on
Commit
776dfee
·
1 Parent(s): 6fd943d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,5 +10,5 @@ def add2List(num):
10
  MIN = min(aList)
11
  return aList, bList, MAX, MIN
12
 
13
- iface = gr.Interface(fn=add2List, inputs="text", outputs=["text","text","text","text"])
14
  iface.launch()
 
10
  MIN = min(aList)
11
  return aList, bList, MAX, MIN
12
 
13
+ iface = gr.Interface(fn=add2List, inputs="text", outputs={"List A":"text","List B":"text","Max":"text","Min":"text"})
14
  iface.launch()