Update app.py
Browse files
app.py
CHANGED
|
@@ -6,5 +6,5 @@ def pushList(num):
|
|
| 6 |
bList = aList.sort()
|
| 7 |
return aList, bList
|
| 8 |
|
| 9 |
-
iface = gr.Interface(fn=pushList, inputs="text", outputs="text")
|
| 10 |
iface.launch()
|
|
|
|
| 6 |
bList = aList.sort()
|
| 7 |
return aList, bList
|
| 8 |
|
| 9 |
+
iface = gr.Interface(fn=pushList, inputs="text", outputs=["text","text"])
|
| 10 |
iface.launch()
|