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