Update app.py
Browse filesadded missing commas
app.py
CHANGED
@@ -103,10 +103,10 @@ iface3 = gr.Interface(
|
|
103 |
fn=stock_sp_calc,
|
104 |
inputs=[
|
105 |
gr.Number(label="Buy-in Price", precision=2, step=0.01),
|
106 |
-
gr.Number(label="Target gain (%)", precision=3, step=0.01)
|
107 |
],
|
108 |
outputs=[
|
109 |
-
gr.Number(label="Selling price", precision=3)
|
110 |
],
|
111 |
examples=[
|
112 |
[33.62, 10],
|
|
|
103 |
fn=stock_sp_calc,
|
104 |
inputs=[
|
105 |
gr.Number(label="Buy-in Price", precision=2, step=0.01),
|
106 |
+
gr.Number(label="Target gain (%)", precision=3, step=0.01),
|
107 |
],
|
108 |
outputs=[
|
109 |
+
gr.Number(label="Selling price", precision=3),
|
110 |
],
|
111 |
examples=[
|
112 |
[33.62, 10],
|