mishtert commited on
Commit
c0123ad
1 Parent(s): 63c2976

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -9,4 +9,5 @@ def calculate (for_this,this_much,how_much_for_this):
9
  answer = (y/x)*z
10
  return answer
11
 
12
- iface = gr.Interface(fn=calculate, inputs=["text", "text", "text"], outputs=["textbox"]).launch(share=True)
 
 
9
  answer = (y/x)*z
10
  return answer
11
 
12
+ iface = gr.Interface(fn=calculate, inputs=["text", "text", "text"], outputs=["textbox"])
13
+ iface.launch()