Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -346,16 +346,16 @@ class PropertyFormulaAnalyzer:
|
|
| 346 |
results_display += f"**Formula:** `{info['formula']}`\n"
|
| 347 |
results_display += f"**Result:** {info['formatted_result']}\n\n"
|
| 348 |
|
| 349 |
-
if non_computable_formulas:
|
| 350 |
-
|
| 351 |
-
|
| 352 |
-
|
| 353 |
-
|
| 354 |
-
|
| 355 |
-
|
| 356 |
-
|
| 357 |
-
|
| 358 |
-
|
| 359 |
|
| 360 |
# Create JSON output
|
| 361 |
json_output = {
|
|
|
|
| 346 |
results_display += f"**Formula:** `{info['formula']}`\n"
|
| 347 |
results_display += f"**Result:** {info['formatted_result']}\n\n"
|
| 348 |
|
| 349 |
+
# if non_computable_formulas:
|
| 350 |
+
# results_display += "\n## ❌ Non-Computable Formulas\n\n"
|
| 351 |
+
# for cell_ref, info in sorted(non_computable_formulas.items()):
|
| 352 |
+
# results_display += f"### {cell_ref}: {info['description']}\n"
|
| 353 |
+
# results_display += f"**Formula:** `{info['formula']}`\n"
|
| 354 |
+
# if info.get('missing_variables'):
|
| 355 |
+
# results_display += f"**Missing Variables:** {', '.join(info['missing_variables'])}\n"
|
| 356 |
+
# if info.get('error'):
|
| 357 |
+
# results_display += f"**Error:** {info['error']}\n"
|
| 358 |
+
# results_display += "\n"
|
| 359 |
|
| 360 |
# Create JSON output
|
| 361 |
json_output = {
|