nongmind commited on
Commit
de9ec26
1 Parent(s): 1afcd75

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,6 +18,6 @@ def add2List(num,startRand,endRand):
18
  MIN = min(aList)
19
  return aList,bList,MAX,MIN
20
 
21
- iface = gr.Interface(fn=add2List, inputs="text", outputs=["text","text","text"])
22
  iface.launch()
23
 
 
18
  MIN = min(aList)
19
  return aList,bList,MAX,MIN
20
 
21
+ iface = gr.Interface(fn=add2List, inputs=["text","text","text"], outputs=["text","text","text"])
22
  iface.launch()
23