Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
|
@@ -281,7 +281,7 @@ def get_spending_overview():
|
|
| 281 |
.to_dict(orient='records')
|
| 282 |
})
|
| 283 |
except Exception as e:
|
| 284 |
-
return jsonify({'error': str(e)}), 500
|
| 285 |
|
| 286 |
# ... (previous imports remain the same)
|
| 287 |
|
|
|
|
| 281 |
.to_dict(orient='records')
|
| 282 |
})
|
| 283 |
except Exception as e:
|
| 284 |
+
return jsonify({'error': str(e) + f'transactions:{transactions}'}), 500
|
| 285 |
|
| 286 |
# ... (previous imports remain the same)
|
| 287 |
|