Update app.py
Browse files
app.py
CHANGED
|
@@ -121,8 +121,8 @@ def predict():
|
|
| 121 |
# Menambahkan perubahan total
|
| 122 |
result = {
|
| 123 |
'last_price': {
|
| 124 |
-
'sell': round(last_price[0]
|
| 125 |
-
'buy': round(last_price[
|
| 126 |
},
|
| 127 |
'predictions': predictions_result,
|
| 128 |
'total_changes': {
|
|
|
|
| 121 |
# Menambahkan perubahan total
|
| 122 |
result = {
|
| 123 |
'last_price': {
|
| 124 |
+
'sell': round(last_price[0], 2),
|
| 125 |
+
'buy': round(last_price[1], 2)
|
| 126 |
},
|
| 127 |
'predictions': predictions_result,
|
| 128 |
'total_changes': {
|