Spaces:
Runtime error
Runtime error
xiomarablanco
commited on
Commit
•
c93186d
1
Parent(s):
6a13396
Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def Main(uploadedFile, txtFileInput, orthographyPercentage, syntaxPercentage, se
|
|
21 |
try:
|
22 |
if not txtFileInput:
|
23 |
error="Por favor seleccione un archivo con las preguntas y respuestas"
|
24 |
-
|
25 |
else:
|
26 |
txtFileInput = txtFileInput.name
|
27 |
|
@@ -38,7 +38,7 @@ def Main(uploadedFile, txtFileInput, orthographyPercentage, syntaxPercentage, se
|
|
38 |
|
39 |
if not uploadedFile:
|
40 |
error="Por favor seleccione el .zip con las respuestas de los alumnos"
|
41 |
-
|
42 |
else:
|
43 |
uploadedFilePath = uploadedFile.name
|
44 |
|
|
|
21 |
try:
|
22 |
if not txtFileInput:
|
23 |
error="Por favor seleccione un archivo con las preguntas y respuestas"
|
24 |
+
return [error, excelPath]
|
25 |
else:
|
26 |
txtFileInput = txtFileInput.name
|
27 |
|
|
|
38 |
|
39 |
if not uploadedFile:
|
40 |
error="Por favor seleccione el .zip con las respuestas de los alumnos"
|
41 |
+
return [error, excelPath]
|
42 |
else:
|
43 |
uploadedFilePath = uploadedFile.name
|
44 |
|