Spaces:
Runtime error
Runtime error
xiomarablanco
commited on
Commit
•
0562415
1
Parent(s):
c93186d
Quitar un print cuando se pasa del JSON al Excel
Browse files
app.py
CHANGED
@@ -67,7 +67,7 @@ def exportResultToExcelFile(modelResult):
|
|
67 |
studentsArray = modelResult[0]
|
68 |
index = 0
|
69 |
for item in studentsArray:
|
70 |
-
print("ITEM - " + str(item))
|
71 |
studentData = item[index]
|
72 |
excelData.append(studentData)
|
73 |
index+= 1
|
|
|
67 |
studentsArray = modelResult[0]
|
68 |
index = 0
|
69 |
for item in studentsArray:
|
70 |
+
#print("ITEM - " + str(item))
|
71 |
studentData = item[index]
|
72 |
excelData.append(studentData)
|
73 |
index+= 1
|