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