Spaces:
Build error
Build error
fix wrong param
Browse files
app.py
CHANGED
|
@@ -92,7 +92,7 @@ def process(file_name, embed_html_all):
|
|
| 92 |
writer = csv.writer(w)
|
| 93 |
for top in tops:
|
| 94 |
file = os.path.splitext(os.path.basename(top))[0]
|
| 95 |
-
writer.writerow(dict_catalog[
|
| 96 |
|
| 97 |
return (embed_html_all, output_csv, *formated)
|
| 98 |
"""except:
|
|
|
|
| 92 |
writer = csv.writer(w)
|
| 93 |
for top in tops:
|
| 94 |
file = os.path.splitext(os.path.basename(top))[0]
|
| 95 |
+
writer.writerow(dict_catalog[file].values())
|
| 96 |
|
| 97 |
return (embed_html_all, output_csv, *formated)
|
| 98 |
"""except:
|