Spaces:
Runtime error
Runtime error
Commit ·
abb3988
1
Parent(s): 3f7e079
Update app.py
Browse files
app.py
CHANGED
|
@@ -94,8 +94,16 @@ iface2 = gr.Interface(
|
|
| 94 |
|
| 95 |
|
| 96 |
|
| 97 |
-
thread1 = threading.Thread(target=iface1.launch, args=(debug=True, share=True, server_port=7861))
|
| 98 |
-
thread2 = threading.Thread(target=iface2.launch, args=(debug=True, share=True, server_port=7862))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
|
| 101 |
thread1.start()
|
|
|
|
| 94 |
|
| 95 |
|
| 96 |
|
| 97 |
+
# thread1 = threading.Thread(target=iface1.launch, args=(debug=True, share=True, server_port=7861))
|
| 98 |
+
# thread2 = threading.Thread(target=iface2.launch, args=(debug=True, share=True, server_port=7862))
|
| 99 |
+
|
| 100 |
+
thread1 = threading.Thread(
|
| 101 |
+
target=iface1.launch, args=(debug, share, server_port=7861) # Remove extra `=`
|
| 102 |
+
)
|
| 103 |
+
thread2 = threading.Thread(
|
| 104 |
+
target=iface2.launch, args=(debug, share, server_port=7862) # Remove extra `=`
|
| 105 |
+
)
|
| 106 |
+
|
| 107 |
|
| 108 |
|
| 109 |
thread1.start()
|