vishwak1 commited on
Commit
d29abcc
·
verified ·
1 Parent(s): b4ff22b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -222,7 +222,8 @@ class PropertyPredictionApp:
222
 
223
  return prediction_text, chart
224
 
225
- except Exception as e: error_text = f"❌ **Prediction Error:** {str(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