yanivbl commited on
Commit
629a75b
·
1 Parent(s): 76543d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def process_csv(file):
14
  iface = gr.Interface(
15
  fn=process_csv,
16
  inputs=gr.File(type="binary", label="Upload CSV File"), # Changed 'csv' to 'binary'
17
- #outputs="dataframe",
18
  title="CSV File Upload",
19
  description="Upload a CSV file and convert it to a pandas DataFrame."
20
  )
 
14
  iface = gr.Interface(
15
  fn=process_csv,
16
  inputs=gr.File(type="binary", label="Upload CSV File"), # Changed 'csv' to 'binary'
17
+ outputs="dataframe",
18
  title="CSV File Upload",
19
  description="Upload a CSV file and convert it to a pandas DataFrame."
20
  )