Spaces:
Sleeping
Sleeping
Commit ·
6d72498
1
Parent(s): 09e090c
Update tab1.py
Browse files
tab1.py
CHANGED
|
@@ -8,7 +8,7 @@ def execute(file):
|
|
| 8 |
data = pd.read_excel(file.name)
|
| 9 |
|
| 10 |
# Save the modified data to the output folder
|
| 11 |
-
output_file =
|
| 12 |
data.to_excel(output_file, index=False)
|
| 13 |
|
| 14 |
return f"File saved at {output_file}"
|
|
|
|
| 8 |
data = pd.read_excel(file.name)
|
| 9 |
|
| 10 |
# Save the modified data to the output folder
|
| 11 |
+
output_file = 'dados/output.xlsx'
|
| 12 |
data.to_excel(output_file, index=False)
|
| 13 |
|
| 14 |
return f"File saved at {output_file}"
|