Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
| 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()
|