Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -222,7 +222,8 @@ class PropertyPredictionApp:
|
|
| 222 |
|
| 223 |
return prediction_text, chart
|
| 224 |
|
| 225 |
-
except Exception as e:
|
|
|
|
| 226 |
chart = self.create_prediction_chart(current_value, None)
|
| 227 |
return error_text, chart
|
| 228 |
|
|
|
|
| 222 |
|
| 223 |
return prediction_text, chart
|
| 224 |
|
| 225 |
+
except Exception as e:
|
| 226 |
+
error_text = f"❌ **Prediction Error:** {str(e)}"
|
| 227 |
chart = self.create_prediction_chart(current_value, None)
|
| 228 |
return error_text, chart
|
| 229 |
|