Spaces:
Running
Running
feat: Change the save msg
Browse files
app.py
CHANGED
|
@@ -98,7 +98,7 @@ def save_data(path: str) -> str:
|
|
| 98 |
"""
|
| 99 |
try:
|
| 100 |
upload_to_github(path, open(path).read())
|
| 101 |
-
return "✅ Results successfully
|
| 102 |
except Exception as e:
|
| 103 |
return f"❌ Upload failed: {e}"
|
| 104 |
|
|
|
|
| 98 |
"""
|
| 99 |
try:
|
| 100 |
upload_to_github(path, open(path).read())
|
| 101 |
+
return "✅ Results are successfully saved!"
|
| 102 |
except Exception as e:
|
| 103 |
return f"❌ Upload failed: {e}"
|
| 104 |
|