aakash0563 commited on
Commit
70c07e6
·
1 Parent(s): 29aeeac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -95,8 +95,8 @@ iface2 = gr.Interface(
95
 
96
 
97
  # Launch the apps in separate threads
98
- thread1 = threading.Thread(target=iface1.launch, args=(debug=True, share=True))
99
- thread2 = threading.Thread(target=iface2.launch, args=(debug=True, share=True))
100
 
101
  thread1.start()
102
  thread2.start()
 
95
 
96
 
97
  # Launch the apps in separate threads
98
+ thread1 = threading.Thread(target=iface1.launch)
99
+ thread2 = threading.Thread(target=iface2.launch)
100
 
101
  thread1.start()
102
  thread2.start()