Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -15,5 +15,5 @@ def add2List(num,startRand,endRand):
|
|
| 15 |
MIN = min(aList)
|
| 16 |
return aList,bList,MAX,MIN
|
| 17 |
|
| 18 |
-
iface = gr.Interface(fn=add2List, inputs="text", outputs=["text","text","text","text"])
|
| 19 |
iface.launch()
|
|
|
|
| 15 |
MIN = min(aList)
|
| 16 |
return aList,bList,MAX,MIN
|
| 17 |
|
| 18 |
+
iface = gr.Interface(fn=add2List, inputs=["text","text","text"], outputs=["text","text","text","text"])
|
| 19 |
iface.launch()
|