taskforce-dev commited on
Commit
5d59983
·
verified ·
1 Parent(s): 8b13cc0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -17,8 +17,8 @@ def excel_to_json(file):
17
  # Gradioインターフェースの設定
18
  interface = gr.Interface(
19
  fn=excel_to_json,
20
- inputs=gr.inputs.File(label="Upload Excel File"),
21
- outputs=gr.outputs.Textbox(label="JSON Output"),
22
  title="Excel to JSON Converter",
23
  description="Upload an Excel file and get JSON output of column C values from the second row onward."
24
  )
 
17
  # Gradioインターフェースの設定
18
  interface = gr.Interface(
19
  fn=excel_to_json,
20
+ inputs=gr.File(label="Upload Excel File"),
21
+ outputs=gr.Textbox(label="JSON Output"),
22
  title="Excel to JSON Converter",
23
  description="Upload an Excel file and get JSON output of column C values from the second row onward."
24
  )