Spaces:
Sleeping
Sleeping
kms
commited on
Commit
ยท
4398562
1
Parent(s):
0f584c9
new
Browse files
app.py
CHANGED
@@ -45,7 +45,7 @@ def get_csv_file(csv_docs):
|
|
45 |
csv_docs = csv_loader.load()
|
46 |
text = ""
|
47 |
for row in csv_docs:
|
48 |
-
text += " ".join(row) + "\n"
|
49 |
return text
|
50 |
|
51 |
# json ํ์ผ๋ก๋ถํฐ ํ
์คํธ๋ฅผ ์ถ์ถํ๋ ํจ์์
๋๋ค.
|
|
|
45 |
csv_docs = csv_loader.load()
|
46 |
text = ""
|
47 |
for row in csv_docs:
|
48 |
+
text += " ".join(str(item) for item in row) + "\n"
|
49 |
return text
|
50 |
|
51 |
# json ํ์ผ๋ก๋ถํฐ ํ
์คํธ๋ฅผ ์ถ์ถํ๋ ํจ์์
๋๋ค.
|