NBS25 commited on
Commit
e06592f
·
1 Parent(s): 761f4a6

Update app.py

Browse files

added missing commas

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