Spaces:
Runtime error
Runtime error
xiomarablanco
commited on
Commit
•
aba3dab
1
Parent(s):
ac2c37c
Update app.py
Browse files
app.py
CHANGED
@@ -113,7 +113,7 @@ def exportResultToExcelFile(modelResult):
|
|
113 |
f.close()
|
114 |
|
115 |
except Exception as ex:
|
116 |
-
print("Error exportando Excel:"+ str(ex))
|
117 |
|
118 |
return outputFilePath
|
119 |
|
@@ -122,7 +122,7 @@ def copySpanishDictionaries():
|
|
122 |
shutil.copy("./assets/hunspell_dictionaries/es_ES/es_ES.aff", "/home/user/.local/lib/python3.9/site-packages/hunspell/dictionaries/es_ES.aff")
|
123 |
shutil.copy("./assets/hunspell_dictionaries/es_ES/es_ES.dic", "/home/user/.local/lib/python3.9/site-packages/hunspell/dictionaries/es_ES.dic")
|
124 |
except Exception as ex:
|
125 |
-
print("Error copying dictionaries" + str(ex))
|
126 |
|
127 |
def readQATextFile(qaTextFilePath):
|
128 |
configuration = {}
|
|
|
113 |
f.close()
|
114 |
|
115 |
except Exception as ex:
|
116 |
+
print("Error exportando Excel: "+ str(ex))
|
117 |
|
118 |
return outputFilePath
|
119 |
|
|
|
122 |
shutil.copy("./assets/hunspell_dictionaries/es_ES/es_ES.aff", "/home/user/.local/lib/python3.9/site-packages/hunspell/dictionaries/es_ES.aff")
|
123 |
shutil.copy("./assets/hunspell_dictionaries/es_ES/es_ES.dic", "/home/user/.local/lib/python3.9/site-packages/hunspell/dictionaries/es_ES.dic")
|
124 |
except Exception as ex:
|
125 |
+
print("Error copying dictionaries: " + str(ex))
|
126 |
|
127 |
def readQATextFile(qaTextFilePath):
|
128 |
configuration = {}
|