kms commited on
Commit
4398562
ยท
1 Parent(s): 0f584c9
Files changed (1) hide show
  1. app.py +1 -1
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 ํŒŒ์ผ๋กœ๋ถ€ํ„ฐ ํ…์ŠคํŠธ๋ฅผ ์ถ”์ถœํ•˜๋Š” ํ•จ์ˆ˜์ž…๋‹ˆ๋‹ค.