bin20 commited on
Commit
2000f6e
·
1 Parent(s): 052b74a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -47,7 +47,7 @@ def get_csv_file(csv_file):
47
  csv_data = csv_loader.load()
48
 
49
  # CSV 데이터 전체를 하나의 텍스트로 변환합니다.
50
- text_from_csv = '\n'.join(','.join(row) for row in csv_data)
51
  return text_from_csv
52
 
53
 
 
47
  csv_data = csv_loader.load()
48
 
49
  # CSV 데이터 전체를 하나의 텍스트로 변환합니다.
50
+ text_from_csv = '\n'.join(','.join(str(cell) for cell in row) for row in csv_data)
51
  return text_from_csv
52
 
53