araeyn commited on
Commit
efae6aa
·
verified ·
1 Parent(s): 9c90141

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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