Kvikontent commited on
Commit
bbc0a01
·
verified ·
1 Parent(s): ef55b50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def plot_graph(x_values, y_values, optional1='', optional2='', optional3='', opt
12
  inputs = [
13
  gr.Textbox(label="X Values"),
14
  gr.Textbox(label="Y Values"),
15
- gr.Group([gr.Textbox(label=f"Optional {i+1}") for i in range(10)], label="Optional Fields", optional=True)
16
  ]
17
 
18
  gr.Interface(plot_graph, inputs, "image").launch()
 
12
  inputs = [
13
  gr.Textbox(label="X Values"),
14
  gr.Textbox(label="Y Values"),
15
+ gr.Group([gr.Textbox(label=f"Optional {i+1}") for i in range(10)], optional=True)
16
  ]
17
 
18
  gr.Interface(plot_graph, inputs, "image").launch()