Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -159,8 +159,8 @@ def g():
|
|
| 159 |
|
| 160 |
def f():
|
| 161 |
asyncio.run(main())
|
| 162 |
-
Process(f).start()
|
| 163 |
-
Process(g).start()
|
| 164 |
"""
|
| 165 |
websocket
|
| 166 |
streamlit app ~> backend
|
|
|
|
| 159 |
|
| 160 |
def f():
|
| 161 |
asyncio.run(main())
|
| 162 |
+
Process(target=f).start()
|
| 163 |
+
Process(target=g).start()
|
| 164 |
"""
|
| 165 |
websocket
|
| 166 |
streamlit app ~> backend
|