sanketmalde commited on
Commit
b815aed
·
1 Parent(s): 69e1533

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ import pandas as pd
3
 
4
  def readCSV(file):
5
  df = pd.read_csv(file)
6
- return "The DF is: " + df
7
 
8
  demo = gr.Interface(fn=readCSV, inputs="text", outputs="text")
9
 
 
3
 
4
  def readCSV(file):
5
  df = pd.read_csv(file)
6
+ return "All good!"
7
 
8
  demo = gr.Interface(fn=readCSV, inputs="text", outputs="text")
9